@charset "UTF-8";
@keyframes bounceArrow {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  10% {
    transform: translateX(-50%) translateY(-4px);
  }
  20% {
    transform: translateX(-50%) translateY(0);
  }
  30% {
    transform: translateX(-50%) translateY(-2px);
  }
  40% {
    transform: translateX(-50%) translateY(0);
  }
}
/* ==================================================
  基本要素/汎用クラス
================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  font-weight: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4em;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
body.cn {
  font-family: "Noto Sans TC", sans-serif;
}
body.tw {
  font-family: "Noto Sans TC", sans-serif;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6em;
    line-height: 2;
  }
}

* {
  min-height: 0vw;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

a:focus-visible,
button:focus-visible {
  outline: 0;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #FBD620;
}

a {
  color: #000;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  text-decoration: underline;
}
a:hover {
  opacity: 0.8;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  a:hover {
    opacity: 0.8;
  }
}

button {
  display: inline-block;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
button:hover {
  opacity: 0.8;
}
button:focus {
  outline: 0;
}
button:not(:disabled) {
  cursor: pointer;
}

/***
  The new CSS reset - version 1.8.3 (last updated 21.1.2023)
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
}

/* preformatted text - use only for this feature */
pre {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  line-break: after-white-space;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/* ==================================================
  表示/非表示出し分け
================================================== */
.visible_xxs {
  display: none;
}
@media screen and (max-width: 374px) {
  .visible_xxs {
    display: inline-block !important;
  }
}

.hidden_xxs {
  display: inline-block;
}
@media screen and (max-width: 374px) {
  .hidden_xxs {
    display: none !important;
  }
}

.visible_xs {
  display: none;
}
@media screen and (max-width: 767px) {
  .visible_xs {
    display: inline-block !important;
  }
}

.hidden_xs {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .hidden_xs {
    display: none !important;
  }
}

.visible_sm {
  display: none;
}
@media screen and (min-width: 768px) {
  .visible_sm {
    display: inline-block !important;
  }
}

.hidden_sm {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .hidden_sm {
    display: none !important;
  }
}

.visible_md {
  display: none;
}
@media screen and (min-width: 1024px) {
  .visible_md {
    display: inline-block !important;
  }
}

.hidden_md {
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .hidden_md {
    display: none !important;
  }
}

.visible_lg {
  display: none;
}
@media screen and (min-width: 1366px) {
  .visible_lg {
    display: inline-block !important;
  }
}

.hidden_lg {
  display: inline-block;
}
@media screen and (min-width: 1366px) {
  .hidden_lg {
    display: none !important;
  }
}

.visible_xl {
  display: none;
}
@media screen and (min-width: 1920px) {
  .visible_xl {
    display: inline-block !important;
  }
}

.hidden_xl {
  display: inline-block;
}
@media screen and (min-width: 1920px) {
  .hidden_xl {
    display: none !important;
  }
}

.visible_all {
  display: block !important;
}

.hidden_all {
  display: none !important;
}

/* ==================================================
  ヘッダー
================================================== */
.lp_header {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(4vw, 3rem);
  z-index: 1000;
}
.lp_header .header_logo a {
  display: flex;
}
.lp_header .header_logo img {
  width: min(16vw, 12rem);
}
.lp_header .header_sns {
  width: clamp(2rem, 11.733vw, 5rem);
}
.lp_header .header_sns a {
  display: flex;
  background: #000;
  border-radius: 4rem;
  padding: 1rem;
}
.lp_header .header_sns a.cn {
  padding: 0;
  background: #004832;
}
.lp_header .header_sns a.tw {
  padding: 0;
  background: #004832;
}
.lp_header .header_sns_weibo {
  width: clamp(4rem, 7.467vw, 5.6rem);
  aspect-ratio: 1/1;
  display: flex;
  height: 100%;
  padding: 1rem;
  background: #fff;
  border-radius: 10rem;
  align-content: center;
  justify-content: center;
}
.lp_header .header_sns_line {
  width: clamp(4rem, 7.467vw, 5.6rem);
}

/* ==================================================
  全体レイアウト
================================================== */
.lp_wrap {
  position: relative;
  overflow: hidden;
}

.lp_container {
  position: relative;
  font-size: clamp(1.4rem, 0.8vw + 0.7864rem, 1.6rem);
}

/* ==================================================
  main内スタイル
================================================== */
.all_container {
  padding: 12vw 0;
}
.all_container.first {
  padding: 12vw 0 12vw;
}
@media screen and (min-width: 768px) {
  .all_container {
    padding: 64px 0;
  }
  .all_container.first {
    padding: 64px 0 64px;
  }
}
.all_container .all_inner {
  max-width: 840px;
  width: 100%;
  margin: auto;
  padding: 0 4vw;
}
@media screen and (min-width: 768px) {
  .all_container .all_inner {
    padding: 0 15px;
  }
}
.all_container .all_inner .all_genre_title {
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.all_container .all_inner .all_genre_title.first {
  margin-top: 25px;
}
.all_container .all_inner .all_genre_title .h2_num {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.all_container .all_inner .all_genre_title .h2_subtext {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 3rem;
  text-align: center;
}
.all_container .all_inner .all_genre_title h2.h2_text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 4.6rem;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .all_container .all_inner .all_genre_title h2.h2_text {
    font-size: 3.2rem;
  }
}
.all_container .all_inner .all_genre_title h2.h2_text::before, .all_container .all_inner .all_genre_title h2.h2_text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 40px;
}
.all_container .all_inner .all_genre_title h2.h2_text::before {
  content: "";
}
.all_container .all_inner .all_genre_title h2.h2_text::after {
  left: 50%;
  top: 120%;
  transform: translate(-50%, -50%);
  content: url("../img/common/heading_deco.svg");
}
@media screen and (min-width: 768px) {
  .all_container .all_inner .all_genre_title h2.h2_text {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 5.2rem;
    text-align: center;
    position: relative;
  }
  .all_container .all_inner .all_genre_title h2.h2_text::before, .all_container .all_inner .all_genre_title h2.h2_text::after {
    content: url("../img/common/heading_deco.svg");
    position: absolute;
    top: 50%;
    left: auto;
    right: auto;
    transform: translateY(-50%) scale(1);
    width: 120px;
    height: 50px;
  }
  .all_container .all_inner .all_genre_title h2.h2_text::before {
    left: -134px;
  }
  .all_container .all_inner .all_genre_title h2.h2_text::after {
    right: -134px;
    left: auto;
    transform: translateY(-50%) scale(1);
  }
}

.all_inner:has(.ranking_container) {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 3rem;
}

.bg_deepblue .all_container .all_inner .all_genre_title .h2_num {
  background: #fff;
  color: #000;
}
.bg_deepblue .all_container .all_inner .all_genre_title .h2_subtext {
  color: #fff;
}
.bg_deepblue .all_container .all_inner .all_genre_title h2.h2_text {
  color: #fff;
}
.bg_deepblue .all_container .all_inner .all_genre_title h2.h2_text::before, .bg_deepblue .all_container .all_inner .all_genre_title h2.h2_text::after {
  filter: invert(1);
}

.all_container:has(+ .share) {
  padding: 64px 0 64px 0;
}

.share + .all_container {
  padding: 64px 0 64px 0;
}

.lp_main {
  position: relative;
}
.lp_main .tab ul {
  display: flex;
  justify-content: center;
}
.lp_main .tab ul li {
  margin: auto;
}
.lp_main .tab_about {
  margin-top: 88px;
}
.lp_main .cta {
  margin: auto;
  padding: 5.6rem 0;
}
@media screen and (min-width: 768px) {
  .lp_main .cta {
    padding: 8rem 0 6.4rem;
  }
}
.lp_main .cta_button {
  position: relative;
  width: 100%;
  transition: 0.4s ease-in-out;
}
.lp_main .cta_button:hover .cta_button__front {
  opacity: 1;
  transform: translate(0.8rem, 0.8rem);
}
.lp_main .cta_button:active .cta_button__front {
  transform: translate(0.8rem, 0.8rem);
}
.lp_main .cta_button:active .cta_button__front--grayOut {
  transform: none;
}
.lp_main .cta_button--grayOut {
  transform: none;
}
.lp_main .cta_button--grayOut:hover {
  transform: none;
}
.lp_main .cta_button__front {
  position: relative;
  padding: 15px 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  background: #fff;
  border-radius: 6rem;
  border: 2px solid #000;
  text-align: center;
  font-size: clamp(2rem, 1.6vw + 0.7728rem, 2.4rem);
  font-weight: 700;
  transition: 0.4s ease-in-out;
  z-index: 10;
  text-decoration: none;
}
.lp_main .cta_button__front::before {
  content: "";
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background: url(../img/common/icon_sale.svg) no-repeat center/contain;
}
.lp_main .cta_button__front--grayOut.cta_button__front {
  background: #C4C4C4;
  color: #000;
  pointer-events: none;
  transform: none !important;
}
.lp_main .cta_button__front--grayOut.cta_button__front::before {
  content: "";
  display: none;
}
.lp_main .cta_button__about {
  background: rgb(218, 0, 0);
  color: #fff;
}
.lp_main .cta_button__about::before {
  background: url(../img/common/icon_sale.svg) no-repeat center/contain;
  filter: invert(1);
}
.lp_main .cta_button__about:hover::before {
  animation: key1 0.2s ease infinite alternate;
}
@keyframes key1 {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-3px);
  }
}
.lp_main .cta_button__last {
  background: rgb(218, 0, 0);
  color: #fff;
}
.lp_main .cta_button__last::before {
  background: url(../img/common/icon_sale.svg) no-repeat center/contain;
  filter: invert(1);
}
.lp_main .cta_button__shadow {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0.8rem, 0.8rem);
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6rem;
  border: 2px solid #000;
  background: linear-gradient(90deg, rgb(0, 162, 255) 20%, rgb(109, 208, 200) 72%, rgb(181, 238, 164) 100%);
  transition: 0.4s ease-in-out;
  z-index: 1;
}
.lp_main .cta_button__shadow_black {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0.8rem, 0.8rem);
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6rem;
  border: 2px solid #000;
  background: #000;
  transition: 0.4s ease-in-out;
  z-index: 1;
}
.lp_main .cta_attention {
  margin-top: 2.4rem;
  font-size: clamp(1.2rem, 0vw + 1.2rem, 1.2rem);
  line-height: 1.5;
}
.lp_main .cta_attention li::before {
  content: "※";
}
.lp_main .cta_attention li a {
  text-decoration: underline;
}
.lp_main .sec_heading {
  margin-bottom: min(5.333vw, 5rem);
  font-size: clamp(1.5rem, 5.8vw + -2.9486rem, 3rem);
}
.lp_main .sec_subheading {
  margin: 0 auto min(2.667vw, 2rem);
  font-size: clamp(1.4rem, 3.1vw + -0.9777rem, 2.2rem);
}
.lp_main .bg_blue {
  position: relative;
  background-color: #CCEB78;
}
.lp_main .bg_white {
  background-color: #fff;
}
.lp_main .bg_deepblue {
  position: relative;
  background-color: #CCEB78;
  background-size: contain;
}
@media (max-width: 1024px) {
  .lp_main .bg_deepblue {
    background-size: contain;
  }
}
@media (min-width: 1024px) {
  .lp_main .bg_deepblue {
    background-size: cover;
  }
}
.lp_main .bg_deepblue:last-child {
  background: rgb(21, 124, 233);
}
.lp_main .bg_yellow {
  position: relative;
  overflow: hidden;
}
.lp_main .bg_yellow .scrolling_bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.lp_main .bg_yellow .scrolling_bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fbd620;
  background-image: url(../img/common/bg_ranking_sp.webp);
  background-repeat: repeat-y;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .lp_main .bg_yellow .scrolling_bg::before {
    background-image: url(../img/common/bg_ranking_pc.webp);
  }
}
.lp_main .bg_yellow_moya {
  position: relative;
  background-color: #fbd620;
  background-image: url(../img/common/bg_yellow_left.webp), url(../img/common/bg_yellow_right.webp);
  background-position: left 4rem, right 4rem;
  background-size: 40%;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .lp_main .bg_yellow_moya {
    background-size: 40%;
  }
}
.lp_main .bg_yellow_moya::before, .lp_main .bg_yellow_moya::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 16px;
  background: url(../img/common/bg_wave.svg) repeat-x;
  background-size: auto 100%;
  z-index: 1;
}
.lp_main .bg_yellow_moya::before {
  top: -16px;
}
.lp_main .bg_yellow_moya::after {
  bottom: -16px;
  transform: scaleY(-1);
}
.lp_main .bg_yellow_moya.last {
  border-bottom: #000 solid 4px;
}
.lp_main .bg_yellow_moya.last::after {
  display: none;
}
.lp_main .bg_lightYellow {
  position: relative;
  background: #FFF47E;
}
.lp_main .animated-element {
  opacity: 0;
  transform: translateY(-4rem);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  will-change: opacity, transform;
}

.wrap_btn {
  padding: 0 1rem;
}

.frame_area {
  position: relative;
  top: 0;
  padding: 2rem 1.6rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 72, 50, 0.3);
  width: 100%;
  box-shadow: 4px 4px 0 #004832;
}
.frame_area.info_sale {
  overflow: hidden;
  text-align: center;
  padding: 2rem 0 0;
}
.frame_area.info_sale .wrap {
  gap: 1rem;
}
.frame_area.info_sale .note {
  background-color: #f9f9f9;
  padding: 1rem;
  margin-top: 2rem;
  color: #FA8200;
  font-weight: bold;
  border-top: 1px dashed #333;
}
.frame_area.info_sale .note .note_text {
  font-size: clamp(1.6rem, 1.6vw + 0.3728rem, 2rem);
  line-height: 1.6;
  margin: 0;
}

/* ==================================================
  アクションボタン
================================================== */
.action_button {
  position: relative;
  width: 100%;
  transition: 0.3s ease-in-out;
}
.action_button:hover .action_button__front {
  transform: translateY(-4px);
  box-shadow: none;
}
.action_button:active .action_button__front {
  transform: translateY(-2px);
  box-shadow: none;
}
.action_button.sale:has(.close):hover .action_button__front, .action_button.sale:has(.close):active .action_button__front {
  transform: none;
}

.action_button__front {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  min-height: 60px;
  background: #FA8200;
  border: 2px solid #004832;
  border-radius: 60px;
  color: #fff;
  font-size: clamp(1.8rem, 2.3vw + 0.0359rem, 2.4rem);
  font-weight: 800;
  max-width: 480px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  box-shadow: 4px 4px #004832;
  z-index: 2;
}
.action_button__front::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  max-width: 400px;
  margin-right: 8px;
  background: url(../img/common/icon_sakura.svg) no-repeat center/contain;
  filter: brightness(0) invert(1);
}
@media screen and (min-width: 768px) {
  .action_button__front {
    padding: 1rem 2rem;
    min-height: 70px;
    margin: 0 auto;
  }
  .action_button__front::before {
    width: 38px;
    height: 38px;
    min-width: 38px;
    margin-right: 16px;
  }
}
.action_button__front.sale.close {
  background: #C4C4C4;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
}
.action_button__front.sale.close::before {
  display: none;
}
.action_button__front.sale.close.visible_all {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.action_button__shadow {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(4px, 4px);
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  border: 3px solid #004832;
  background: #004832;
  z-index: 1;
}
.action_button.sale:has(.close) .action_button__shadow {
  display: none;
}

/* ==================================================
  新ジャンルリスト
================================================== */
.all_container.new_genre {
  background: url(../img/common/bg_new-genre.jpg) center/cover no-repeat;
}
.all_container.new_genre .all_genre_title .h2_num {
  background: #fff;
  color: #000;
}
.all_container.new_genre .all_genre_title .h2_subtext {
  color: #fff;
}
.all_container.new_genre .all_genre_title h2.h2_text {
  color: #fff;
}
.all_container.new_genre .all_genre_title h2.h2_text::before, .all_container.new_genre .all_genre_title h2.h2_text::after {
  filter: invert(1);
}

.new_genre_list {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .new_genre_list {
    margin-top: 60px;
  }
}

.new_genre_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto 4rem;
}
@media screen and (min-width: 768px) {
  .new_genre_items {
    gap: 24px;
  }
}

.new_genre_item {
  list-style: none;
}

.new_genre_link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 1rem 1rem 3rem;
  background: #fbd620;
  border-radius: 50px;
  font-size: clamp(1.4rem, 3.9vw + -1.5913rem, 2.4rem);
  font-weight: 700;
  color: #000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .new_genre_link {
    padding: 20px 32px 20px 80px;
    font-size: 2.4rem;
  }
}
.new_genre_link::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../img/common/icon_rose.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .new_genre_link::before {
    left: 24px;
    width: 40px;
    height: 40px;
  }
}
.new_genre_link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.new_genre_link:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action_button.sale {
  margin: 24px auto 0;
  max-width: 540px;
}
@media screen and (min-width: 768px) {
  .action_button.sale {
    margin: 32px auto 0;
    max-width: 580px;
  }
}
.action_button.sale::after {
  content: "";
  position: absolute;
  top: -56px;
  right: -10px;
  width: 80px;
  height: 80px;
  background: url(../img/common/sale_btn_after.png) no-repeat center/contain;
  z-index: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .action_button.sale::after {
    top: -76px;
    right: 30px;
    width: 100px;
    height: 100px;
  }
}
.action_button.sale:has(.close)::after {
  display: none;
}

.sns_weibo {
  width: clamp(2.4rem, 7.467vw, 5.6rem);
  aspect-ratio: 1/1;
  display: flex;
  height: 100%;
  padding: 1rem;
  background: #fff;
  border-radius: 10rem;
  align-content: center;
  justify-content: center;
}

.ttl {
  font-weight: bold;
  font-size: clamp(1.6rem, 3.1vw + -0.7777rem, 2.4rem);
}

/* ==================================================
  フッター
================================================== */
.lp_footer .footer_inner {
  width: 100%;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: min(10.667vw, 6rem);
}
.lp_footer .footer_inner small {
  font-size: clamp(1.2rem, 0vw + 1.2rem, 1.2rem);
}

.lp_pagetop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  transition: none;
  opacity: 0;
  z-index: 1000;
}
@media screen and (min-width: 1024px) {
  .lp_pagetop {
    right: 2rem;
    bottom: 2rem;
  }
}
.lp_pagetop a {
  display: block;
  width: min(10.667vw, 6rem);
  height: 0;
  padding-top: min(10.667vw, 6rem);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}
.lp_pagetop a::before {
  content: "";
  width: min(2.667vw, 1.5rem);
  height: min(2.667vw, 1.5rem);
  border-width: 0.2rem 0.2rem 0 0;
  border-color: #fff;
  border-style: solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%) rotate(-45deg);
}
.lp_pagetop.is_show {
  animation: fadein 0.3s forwards;
}
.lp_pagetop.is_hide {
  animation: fadeout 0.3s forwards;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* 公式リンク
-------------------------------------------------- */
.official_link {
  gap: 5rem;
  /*
    h2.h2_text {
      &::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
      }

      @include mq(sm) {
        &::after {
          left: auto !important;
          right: $h2_text_deco_right_pc !important;
          transform: scale(1) !important;
        }
      }
    }
  */
}
.official_link .sec_body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.official_link .sec_body a {
  text-decoration: none;
}
.official_link .sns_wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.6rem;
  justify-content: center;
}

/* 注意テキスト
-------------------------------------------------- */
.fixed-attention {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  font-family: adobe-song-std, sans-serif;
  font-size: 3.1vw;
  color: #fff;
  line-height: 1.5em;
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 4% 8%;
  width: 70vw;
  z-index: 99;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  transition: 0.3s all;
  font-size: clamp(1.4rem, 0vw + 1.4rem, 1.4rem);
  z-index: 1001;
}

.fixed-attention .wrap-fixed-attention-close {
  position: relative;
  cursor: pointer;
  margin-left: 3.2vw;
  position: absolute;
  right: 8px;
  top: 12px;
}

.fixed-attention .wrap-fixed-attention-close::before {
  display: inline;
  content: "×";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 2rem;
  line-height: 1;
  width: 5.33333vw;
  height: 5.33333vw;
  top: 0;
  left: 0;
}

a.fixed-attention_link {
  color: #ffe65b;
  text-decoration: underline;
  display: inline;
}

.fixed-attention br.sp-block {
  display: block;
}

@media screen and (min-width: 640px) {
  .fixed-attention br.sp-block {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .fixed-attention {
    font-size: 17px;
    padding: 16px 32px;
  }
}
/* ==================================================
  fv
================================================== */
.fv {
  position: relative;
}
.fv .fv_logo {
  position: relative;
  margin-bottom: 3vw;
}
@media screen and (min-width: 768px) {
  .fv .fv_logo {
    margin-bottom: 0;
  }
}
.fv .fv_logo .fv_img_28th {
  position: absolute;
  top: 0;
  left: -8vw;
  width: 13vw;
}
.fv .fv_logo .fv_img_left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 17vw;
  height: auto;
  aspect-ratio: 102/143;
  transform: translateY(80px) rotateZ(-6deg);
  animation: slideUpLeft 1.2s ease-out 0.3s forwards;
}
.fv .fv_logo .fv_img_right {
  position: absolute;
  bottom: 0;
  right: auto;
  left: 0;
  width: 17vw;
  height: auto;
  aspect-ratio: 17/24;
  transform: translateY(150px) rotateZ(6deg);
  animation: popUpRight 0.6s ease-out 1s forwards;
}
@media screen and (min-width: 768px) {
  .fv .fv_logo .fv_img_28th {
    position: absolute;
    top: -20px;
    left: -92px;
    width: auto;
  }
  .fv .fv_logo .fv_img_left {
    position: absolute;
    bottom: -104px;
    left: -25vw;
    width: auto;
    height: auto;
    aspect-ratio: 102/143;
    transform: translateY(80px) rotateZ(-6deg) scale(0.7);
    animation: slideUpLeftPC 1.2s ease-out 0.3s forwards;
  }
}
@media screen and (min-width: 768px) and (min-width: 1366px) {
  .fv .fv_logo .fv_img_left {
    left: -15vw;
  }
}
@media screen and (min-width: 768px) {
  .fv .fv_logo .fv_img_right {
    position: absolute;
    bottom: -104px;
    right: -25vw;
    left: auto;
    width: auto;
    height: auto;
    aspect-ratio: 17/24;
    transform: translateY(150px) rotateZ(6deg) scale(0.7);
    animation: popUpRightPC 0.6s ease-out 1s forwards;
  }
}
@media screen and (min-width: 768px) and (min-width: 1366px) {
  .fv .fv_logo .fv_img_right {
    right: -15vw;
  }
}
.fv .fv_result_button {
  width: 100%;
  max-width: 540px;
  padding: 0 4vw;
}
@media screen and (min-width: 768px) {
  .fv .fv_result_button {
    margin-top: 48px;
    margin-bottom: 32px;
    max-width: 580px;
    padding: 0;
  }
}
.fv .fv_title {
  width: 90vw;
  max-width: 530px;
  margin: auto;
}
.fv .fv_content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15vw 0 15vw;
  /*

  &:before {
    content: "";
    background-image: url(../img/common/icon_arrow_black.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 20px;
    height: 35px;
    bottom: 4vw;
    right: 0;
    left: 0;
    margin: auto;
    filter: invert(1);
    transform: rotate(90deg);
  }
    */
}
@media screen and (min-width: 768px) {
  .fv .fv_content {
    padding: 4rem 0 0;
  }
}
.fv .fv_text_list {
  display: inline-block;
  background: #fff;
  position: relative;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid #004832;
  max-width: 90vw;
  z-index: 10;
  color: #004832;
  font-size: clamp(1.4rem, 0.8vw + 0.7864rem, 1.6rem);
  margin-bottom: 1rem;
}
.fv .fv_text_list::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #004832;
  z-index: -1;
  animation: bounceArrow 2s ease-in-out infinite;
}
.fv .fv_text_list::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid #fff;
  animation: bounceArrow 2s ease-in-out infinite;
}
@media screen and (min-width: 768px) {
  .fv .fv_text_list {
    padding: 2rem 3.2rem 2.8rem;
    margin-bottom: 2.4rem;
    max-width: 500px;
  }
}
.fv .fv_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  gap: 1.2rem;
  font-size: clamp(1.2rem, 7.8vw + -4.7826rem, 3.2rem);
  text-align: left;
  font-weight: 700;
  line-height: 1.8;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .fv .fv_text {
    font-size: clamp(1rem, 6.2vw + -3.7554rem, 2.6rem);
  }
}
.fv .fv_text p {
  font-size: 3rem;
  font-weight: 700;
  font-size: clamp(1.9rem, 6.6vw + -3.1622rem, 3.6rem);
  text-align: center;
  padding: 0 1rem;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
  background: #fff;
  max-width: 680px;
}
@media screen and (min-width: 768px) {
  .fv .fv_text p {
    font-size: clamp(1.6rem, 4.7vw + -2.0049rem, 2.8rem);
  }
}
.fv .fv_text strong {
  color: rgb(218, 0, 0);
  font-size: 4rem;
  font-weight: 600;
  font-size: clamp(2.1rem, 7.4vw + -3.5758rem, 4rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv .fv_text strong {
    font-size: clamp(1.9rem, 6.6vw + -3.1622rem, 3.6rem);
  }
}
.fv .fv_sale {
  position: absolute;
  right: 7vw;
  bottom: 30vw;
  z-index: 1;
}
.fv .fv_sale img {
  max-width: none;
  width: 30vw;
  height: auto;
}
@media screen and (min-width: 768px) {
  .fv .fv_sale {
    position: absolute;
    right: clamp(18px, 2vw, 50px);
    bottom: 50px;
  }
  .fv .fv_sale img {
    max-width: 240px;
    width: clamp(130px, 15vw, 240px);
    height: auto;
  }
}
.fv .fv_chara_sp {
  position: absolute;
  bottom: -10rem;
}
.fv .fv_chara_sp img {
  width: 35vw;
  height: auto;
}
.fv .fv_chara_sp .fv_img_left {
  position: relative;
  top: 4vw;
  aspect-ratio: 102/143;
  transform: translateY(80px) rotateZ(-6deg);
  animation: slideUpLeft 1.2s ease-out 0.3s forwards;
}
.fv .fv_chara_sp .fv_img_right {
  position: relative;
  top: 8vw;
  aspect-ratio: 17/24;
  transform: translateY(150px) rotateZ(6deg);
  animation: popUpRight 0.6s ease-out 1s forwards;
}
@keyframes slideUpLeft {
  from {
    transform: translateY(80px) rotateZ(-6deg);
  }
  to {
    transform: translateY(0) rotateZ(-6deg);
  }
}
@keyframes popUpRight {
  0% {
    transform: translateY(150px) rotateZ(6deg);
  }
  60% {
    transform: translateY(-10px) rotateZ(6deg);
  }
  100% {
    transform: translateY(0) rotateZ(6deg);
  }
}
@keyframes slideUpLeftPC {
  from {
    transform: translateY(80px) rotateZ(-6deg) scale(0.7);
  }
  to {
    transform: translateY(0) rotateZ(-6deg) scale(0.7);
  }
}
@keyframes popUpRightPC {
  0% {
    transform: translateY(150px) rotateZ(6deg) scale(0.7);
  }
  60% {
    transform: translateY(-10px) rotateZ(6deg) scale(0.7);
  }
  100% {
    transform: translateY(0) rotateZ(6deg) scale(0.7);
  }
}
.fv .fv_hyousiki {
  margin: 15vw 0 0;
  display: inline-block;
  background: rgb(251, 214, 32);
  color: #000;
  position: relative;
  font-size: clamp(1.4rem, 3.9vw + -1.5913rem, 2.4rem);
  font-weight: 800;
  line-height: 3.6rem;
  text-align: center;
  height: 48px;
  padding: 6px 24px 6px 24px;
  border-radius: 50px;
  box-shadow: 4px 4px 0px 0px rgb(0, 0, 0);
}
@media screen and (min-width: 768px) {
  .fv .fv_hyousiki {
    margin: 8vw 0 0;
  }
}
.fv .fv_hyousiki::before {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 51%;
  transform: translateX(-50%);
  border-width: 12px;
  border-style: solid;
  border-color: black transparent transparent transparent;
  border-radius: 2px;
  z-index: 0;
}
.fv .fv_hyousiki::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffcd00;
}

/*各種背景設定*/
.fv {
  overflow: hidden;
  padding-bottom: 8rem;
}
.fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../img/jp/fv_bg_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  animation: zoomOut 1.5s ease-out forwards;
  z-index: 0;
}
.fv > * {
  position: relative;
  z-index: 1;
}
.fv.jp::before {
  background-image: url(../img/jp/fv_bg_sp.png);
}
@media screen and (min-width: 768px) {
  .fv.jp::before {
    background-image: url(../img/jp/fv_bg_pc.png);
  }
}
.fv.en::before {
  background-image: url(../img/en/fv_bg_sp.png);
}
@media screen and (min-width: 768px) {
  .fv.en::before {
    background-image: url(../img/en/fv_bg_pc.png);
  }
}
.fv.cn::before {
  background-image: url(../img/cn/fv_bg_sp.png);
}
@media screen and (min-width: 768px) {
  .fv.cn::before {
    background-image: url(../img/cn/fv_bg_pc.png);
  }
}
.fv.tw::before {
  background-image: url(../img/tw/fv_bg_sp.png);
}
@media screen and (min-width: 768px) {
  .fv.tw::before {
    background-image: url(../img/tw/fv_bg_pc.png);
  }
}
.fv.kr::before {
  background-image: url(../img/kr/fv_bg_sp.png);
}
@media screen and (min-width: 768px) {
  .fv.kr::before {
    background-image: url(../img/kr/fv_bg_pc.png);
  }
}

@keyframes zoomOut {
  from {
    transform: scale(1.3);
  }
  to {
    transform: scale(1);
  }
}
/* ==================================================
  floor_change
================================================== */
.floor_change {
  background: #fbd620;
  padding: 1.6rem;
  border-top: dotted 2px #004832;
  border-bottom: dotted 2px #004832;
}
@media screen and (min-width: 768px) {
  .floor_change {
    padding: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}
.floor_change .floor_change_inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .floor_change .floor_change_inner {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
}
.floor_change .floor_change_title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.4rem, 2.3vw + -0.3641rem, 2rem);
  font-weight: 700;
  color: #000;
  text-align: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .floor_change .floor_change_title {
    gap: 1rem;
    margin-bottom: 0;
    flex-direction: row;
  }
}
.floor_change .floor_change_title .icon_change {
  display: block;
  width: clamp(15px, 3vw, 30px);
  height: clamp(15px, 3vw, 30px);
  min-width: 15px;
  background: url(../img/common/icon_change.svg) no-repeat center/contain;
  animation: rotateIcon 3.3s ease-in-out infinite;
}
@keyframes rotateIcon {
  0% {
    transform: rotate(0deg);
  }
  9.09% {
    transform: rotate(-360deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.floor_change .floor_change_buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .floor_change .floor_change_buttons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1rem;
    flex-direction: row;
  }
}
.floor_change .floor_change_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 4rem;
  min-height: 24px;
  border: 2px solid #004832;
  border-radius: 50px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-size: clamp(1.4rem, 0.8vw + 0.7864rem, 1.6rem);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgb(8, 93, 56);
}
@media screen and (min-width: 768px) {
  .floor_change .floor_change_btn {
    padding: 0 1rem;
    min-height: 56px;
    width: 160px;
    border-width: 2px;
  }
}
.floor_change .floor_change_btn:not(.active):hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.floor_change .floor_change_btn:not(.active):active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}
.floor_change .floor_change_btn--white:not(.active) {
  background: #fff;
}
.floor_change .floor_change_btn--blue:not(.active) {
  background: #4169e1;
  color: #fff;
}
.floor_change .floor_change_btn--pink-text:not(.active) {
  color: #e91e63;
}
.floor_change .floor_change_btn--purple-text:not(.active) {
  color: #8b3fbf;
}
.floor_change .floor_change_btn.type_home {
  color: #004832;
}
.floor_change .floor_change_btn.type_maniax {
  color: #2F6BB3;
}
.floor_change .floor_change_btn.active.type_home {
  background: #4da534;
  color: #fff;
}
.floor_change .floor_change_btn.active.type_maniax {
  background: #2F6BB3;
  color: #fff;
}
.floor_change .floor_change_btn.active.type_girls {
  background: #FF69B4;
  color: #fff;
}
.floor_change .floor_change_btn.active.type_bl {
  background: #8b3fbf;
  color: #fff;
}

/* ==================================================
  about
================================================== */
.all_container.about {
  position: relative;
  overflow: hidden;
  background-image: url(../img/common/bg_about.png);
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: calc(50% + 13vw) calc(50% - 5vw);
  background-attachment: fixed;
}
@media screen and (min-width: 768px) {
  .all_container.about {
    background-size: 60%;
    background-position: calc(50% - 24vw) calc(0% + 22vw);
  }
}
@media screen and (min-width: 1920px) {
  .all_container.about {
    background-size: 50%;
    background-position: calc(50% - 24vw) calc(0% + 15vw);
  }
}
.all_container.about .all_inner {
  width: auto;
  position: relative;
}

.about {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin: auto;
  background-color: #CCEB78;
  position: relative;
  z-index: 1;
}
.about_inner {
  position: relative;
  padding-top: 12rem;
}
.about_body {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem 1.6rem;
}
@media screen and (min-width: 768px) {
  .about_body {
    padding: 4rem;
  }
}
.about_text {
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 2.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about_text {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.about_text .red {
  color: #da0000;
}
.about_text .big {
  font-size: 5.6vw;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .about_text .big {
    font-size: 4rem;
  }
}
.about_img {
  position: absolute;
  right: -6vw;
  bottom: -20vw;
  display: block;
  width: 47vw;
  height: auto;
}
@media screen and (min-width: 768px) {
  .about_img {
    position: absolute;
    right: -62px;
    bottom: -131px;
    display: block;
    width: 320px;
    height: 206px;
  }
}
.about .fv_tab {
  margin-bottom: 64px;
}
.about .fv_tab .fv_tab_title {
  font-size: clamp(2rem, 1.6vw + 0.7728rem, 2.4rem);
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  color: #000;
  margin-top: 0;
  margin-bottom: 10px;
}
.about .fv_tab ul {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.about .fv_tab ul li {
  position: relative;
}
.about .fv_tab ul li .cta_button__front::before {
  display: none;
}

/* ==================================================
  addlook_genre 07
================================================== */
.addlook_genre_container {
  margin: 0;
}
.addlook_genre_container .addlook_genre_group {
  display: flex;
  justify-content: center;
  gap: 55px 25px;
  flex-wrap: wrap;
  position: relative;
}
.addlook_genre_container .addlook_genre_group .addlook_genre_item {
  max-width: 72vw;
  min-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.addlook_genre_container .addlook_genre_group .addlook_genre_genre {
  position: relative;
  bottom: 0;
  max-width: 72vw;
  min-width: 260px;
  width: 100%;
  margin: 0 auto 5px;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  padding: 16px 20px;
  color: #fff;
  background: rgb(128, 5, 5);
  box-shadow: inset 0 1px 0 0 rgb(242, 223, 158), inset 0 -1px 0 0 rgb(242, 223, 158);
  border-top: 2px solid rgb(128, 5, 5);
  border-bottom: 2px solid rgb(128, 5, 5);
  transition: 0.3s;
  /* 左下の擬似要素 */
  /* 右下の擬似要素（画像を反転） */
}
@media screen and (min-width: 768px) {
  .addlook_genre_container .addlook_genre_group .addlook_genre_genre {
    max-width: 50vw;
  }
}
.addlook_genre_container .addlook_genre_group .addlook_genre_genre::before {
  content: "";
  position: absolute;
  bottom: -21px;
  left: -19px;
  width: 40px;
  height: 60px;
  background-image: url("../img/common/bg_ribbon_left.svg");
  background-size: cover;
  z-index: -1;
  transition: 0.3s;
}
.addlook_genre_container .addlook_genre_group .addlook_genre_genre::after {
  content: "";
  position: absolute;
  bottom: -21px;
  right: -19px;
  width: 40px;
  height: 60px;
  background-image: url("../img/common/bg_ribbon_right.svg");
  background-size: cover;
  z-index: -1;
  transition: 0.3s;
}
.addlook_genre_container .addlook_genre_group .addlook_genre_genre:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .addlook_genre_container .addlook_genre_group .addlook_genre_item {
    max-width: 300px;
    width: 100%;
    gap: 40px;
  }
  .addlook_genre_container .addlook_genre_group .addlook_genre_genre {
    max-width: 260px;
    width: 100%;
  }
}
.addlook_genre_container .addlook_genre_group .addlook_genre_text_box {
  background: #fff;
  padding: 24px;
  gap: 4px;
  border-radius: 24px;
  position: relative;
  overflow: visible;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.3);
}
.addlook_genre_container .addlook_genre_group .addlook_genre_text_box::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 20px solid white;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.3));
  z-index: -1;
}
.addlook_genre_container .addlook_genre_group .addlook_genre_text_box .addlook_genre_text_title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.7rem;
  text-align: left;
  margin-bottom: 4px;
}
.addlook_genre_container .addlook_genre_group .addlook_genre_text_box .addlook_genre_text {
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: left;
}

.addlook_genre_container .addlook_genre_group a.addlook_genre_genre:hover {
  position: relative;
  bottom: -10px;
}

/* ==================================================
  data_area voting prefecture
================================================== */
.data_h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 5.2rem;
  text-align: center;
  margin-top: 80px;
  padding-bottom: 48px;
}

.data_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.data_title {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.data_list_top {
  width: 100%;
}

.wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.data_list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  margin: auto;
}

.data_item {
  width: 100%;
  text-align: center;
}

.data_image {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/*国内都道府県*/
.data_list {
  background: #fff;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.3);
  padding: 1.2rem 1rem;
  border-radius: 1rem;
}

.data_world_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.data_world_item .ttl {
  position: relative;
  padding-bottom: 0.8rem;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.5);
  overflow: hidden;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.data_world_item .ttl.animated {
  animation: slideInFromLeft 1s ease-out forwards;
}

@keyframes slideInFromLeft {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.data_world_image01 {
  width: 100%;
  height: auto;
}

.data_world_image02 {
  width: 100%;
  max-height: 726px;
  height: 100%;
  text-align: center;
}

/*PC*/
@media screen and (min-width: 768px) {
  .data_list {
    padding: 4rem;
  }
  .data_world_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}
/*世界別*/
.data_list.sekaibetu .data_world_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.data_list.sekaibetu .data_world_item .data_world_image01 {
  max-width: 900px;
  width: 100%;
  max-height: 443px;
  height: 100%;
}
.data_list.sekaibetu .data_world_item .data_world_image02 {
  width: 100%;
  max-width: 480px;
  max-height: 191px;
  height: 100%;
  text-align: center;
}

/*スライダーエリア*/
.splide__list .splide__slide img {
  max-height: 70vh;
}

.splide__arrow {
  align-items: center;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  height: calc(35px + 4vw);
  justify-content: center;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(20px + 4vw);
  z-index: 1;
}
.splide__arrow svg {
  display: none;
}

.splide__arrow--next {
  background-image: url("../img/common/icon_arrow_black.svg");
  background-size: 20px 35px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0);
  right: -2vw;
  transform: translateY(0%);
}

.splide__arrow--prev {
  background-image: url("../img/common/icon_arrow_black.svg");
  background-size: 20px 35px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0);
  transform: scaleX(-1);
  left: -2vw;
}

.splide__pagination {
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  pointer-events: none;
  z-index: 10;
}

.splide__pagination__page {
  background: #555;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  margin: 3px;
  opacity: 1;
  padding: 0;
  pointer-events: auto;
  transition: transform 0.2s linear;
  width: 10px;
  cursor: pointer;
}
.splide__pagination__page:hover {
  opacity: 0.8;
}
.splide__pagination__page.is-active {
  background: orange;
  opacity: 1;
  transform: scale(1.4);
}

/* ==================================================
  ranking 01 05 09
================================================== */
.ranking_title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}

.ranking_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .ranking_container {
    gap: 90px;
  }
}

.ranking_block {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .ranking_block {
    width: auto;
  }
}
.ranking_block .ranking_heading {
  min-width: 200px;
  border-radius: 40px;
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 6px 20px;
  font-size: clamp(1.8rem, 10.9vw + -6.5603rem, 4.6rem);
  font-weight: bold;
  position: relative;
  line-height: 3.6rem;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .ranking_block .ranking_heading {
    font-size: 2.4rem;
  }
}
.ranking_block .ranking_heading::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 20px 20px 0;
  border-style: solid;
  border-color: #000 transparent transparent;
  animation: bounceArrow 2s ease-in-out infinite;
}
.ranking_block .ranking_heading::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  bottom: -10px;
  right: -10px;
}
.ranking_block .ranking_heading.japan::before {
  content: url("../img/common/icon_japan.svg");
}
.ranking_block .ranking_heading.lang::before {
  content: url("../img/common/icon_lang.svg");
}
.ranking_block .ranking_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}
.ranking_block .ranking_item {
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  padding: 10px 4rem 10px 4rem;
  gap: 40px;
  border-radius: 72px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.3);
  margin-left: 10vw;
}
.ranking_block .ranking_item.jp {
  justify-content: flex-start;
}
.ranking_block .ranking_item.en, .ranking_block .ranking_item.cn, .ranking_block .ranking_item.tw, .ranking_block .ranking_item.kr {
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .ranking_block .ranking_item {
    min-width: 430px;
    margin-left: 0;
    padding: 12px 64px 12px 44px;
  }
}
.ranking_block .ranking_item .ranking_genre {
  display: inline-block;
  font-size: clamp(2rem, 7.8vw + -3.9826rem, 4rem);
  font-weight: 700;
  line-height: 2;
  text-align: center;
  color: #000;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .ranking_block .ranking_item .ranking_genre {
    font-size: 2.4rem;
    white-space: nowrap;
  }
}
.ranking_block .ranking_item .ranking_genre::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.ranking_block .ranking_item .ranking_genre:hover::after {
  width: 0;
  opacity: 0;
}
.ranking_block .ranking_item:nth-of-type(4), .ranking_block .ranking_item:nth-of-type(5) {
  width: auto;
  padding: 10px 3rem 10px 3rem;
  margin: 0 10vw 0 15vw;
}
@media screen and (min-width: 768px) {
  .ranking_block .ranking_item:nth-of-type(4), .ranking_block .ranking_item:nth-of-type(5) {
    width: -moz-min-content;
    width: min-content;
    min-width: 450px;
    margin: 0;
    padding: 12px 40px 12px 40px;
  }
}
.ranking_block .ranking_item:nth-of-type(4) .ranking_genre, .ranking_block .ranking_item:nth-of-type(5) .ranking_genre {
  display: inline-block;
  font-size: clamp(1.8rem, 7vw + -3.569rem, 3.6rem);
  line-height: 3.6rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .ranking_block .ranking_item:nth-of-type(4) .ranking_genre, .ranking_block .ranking_item:nth-of-type(5) .ranking_genre {
    font-size: 2.4rem;
    line-height: 3.6rem;
    white-space: nowrap;
  }
}
.ranking_block .ranking_item:nth-of-type(4) .ranking_genre::after, .ranking_block .ranking_item:nth-of-type(5) .ranking_genre::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.ranking_block .ranking_item:nth-of-type(4) .ranking_genre:hover::after, .ranking_block .ranking_item:nth-of-type(5) .ranking_genre:hover::after {
  width: 0;
  opacity: 0;
}
.ranking_block .ranking_item .ranking_badge {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #004832;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: absolute;
  left: -40px;
}
.ranking_block .ranking_item .ranking_badge_img {
  position: absolute;
  left: -9vw;
  top: -5px;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15vw;
}
@media screen and (min-width: 768px) {
  .ranking_block .ranking_item .ranking_badge_img {
    width: auto;
    left: -60px;
    top: -5px;
  }
}
.ranking_block .ranking_item .ranking_badge_img img {
  width: 100%;
  height: auto;
}

.sale_block {
  margin-top: 90px;
}

/* Firefoxのみ適用 */
@-moz-document url-prefix() {
  .ranking_block .ranking_item .ranking_badge_img img {
    width: 106px;
  }
}
/* ==================================================
  r18tab
================================================== */
.floor_heading {
  display: inline-block;
  background: #fff;
  position: relative;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid #004832;
  max-width: 90vw;
  z-index: 10;
  font-size: clamp(1.4rem, 2.3vw + -0.3641rem, 2rem);
  line-height: 1.6;
  margin-top: 4rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}
.floor_heading::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #004832;
  z-index: -1;
  animation: bounceArrow 2s ease-in-out infinite;
}
.floor_heading::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid #fff;
  animation: bounceArrow 2s ease-in-out infinite;
}
@media screen and (min-width: 768px) {
  .floor_heading {
    padding: 2rem;
    max-width: 600px;
  }
}

.floor_nav {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 3vw;
  /* Safari対応 */
  position: sticky;
  top: 0;
  padding: 8px 3vw 0 3vw;
}
@media screen and (min-width: 768px) {
  .floor_nav {
    gap: 24px;
  }
}

.floor_item {
  font-size: clamp(1.8rem, 0.8vw + 1.1864rem, 2rem);
  text-align: center;
  display: inline-block;
  background: #fff;
  color: #000;
  border-radius: 12px 12px 0 0;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  max-width: 28vw;
  width: 28vw;
  padding: 5px 0;
}
@media screen and (min-width: 768px) {
  .floor_item {
    font-size: 2rem;
    max-width: 200px;
  }
}
.floor_item.active {
  background: #000;
  color: #fff;
  pointer-events: none;
}
.floor_item:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}

/* ==================================================
  r18tab
================================================== */
.genre_tab_area {
  background: #FBD620;
}

#stickyArea {
  position: relative;
  background: #FBD620;
  z-index: 10;
  transition: all 0.3s;
  z-index: 1000;
  display: block;
}
#stickyArea.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.genre_tab_box {
  background-color: #ffd700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.genre_tab_nav {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  /* Safari対応 */
  position: sticky;
  top: 0;
  padding: 16px 0 0 0;
  border-bottom: 2px solid #000;
  border-top: 2px solid #000;
  width: 100%;
}
.genre_tab_nav.jp {
  padding: 16px 24px 0 0;
}
.genre_tab_nav .genre_tab_item {
  position: relative;
  margin-left: -20px;
}
.genre_tab_nav .genre_tab_item a {
  display: inline-block;
  text-align: center;
  background: #fff;
  border-radius: 12px 12px 0 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  width: clamp(44px, 10vw, 50px);
  height: 44px;
  line-height: 4rem;
}
.genre_tab_nav .genre_tab_item a:hover {
  opacity: 1;
}
.genre_tab_nav .genre_tab_item.active a {
  background: #000;
  color: #fff;
}
.genre_tab_nav .genre_tab_item:nth-child(1) {
  z-index: 1;
}
.genre_tab_nav .genre_tab_item:nth-child(2) {
  z-index: 1;
}
.genre_tab_nav .genre_tab_item:nth-child(3) {
  z-index: 1;
}
.genre_tab_nav .genre_tab_item:nth-child(4) {
  z-index: 1;
}
.genre_tab_nav.jp .genre_tab_item:nth-child(5) {
  margin-left: -240px;
}
.genre_tab_nav:not(.jp) .genre_tab_item:nth-child(5) {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .genre_tab_nav {
    width: 100%;
  }
  .genre_tab_nav .genre_tab_item {
    margin: 0;
    margin-left: 0;
    position: relative;
  }
  .genre_tab_nav .genre_tab_item a {
    position: relative;
  }
  .genre_tab_nav:not(.jp) .genre_tab_item:nth-child(5) {
    margin-left: 0;
  }
  .genre_tab_nav.jp .genre_tab_item:nth-child(5) {
    margin-left: -240px;
  }
  .genre_tab_nav.jp .genre_tab_item:nth-child(1), .genre_tab_nav.jp .genre_tab_item:nth-child(2), .genre_tab_nav.jp .genre_tab_item:nth-child(3), .genre_tab_nav.jp .genre_tab_item:nth-child(4) {
    margin-left: 0;
  }
  /* Adjust color for tabs 5-8 */
  .genre_tab_nav.jp .genre_tab_item:nth-child(n+5) a {
    background-color: #ffeb75;
    height: 78px;
  }
}
@media screen and (min-width: 768px) {
  .genre_tab_nav .genre_tab_item {
    margin: inherit;
    position: relative;
  }
  .genre_tab_nav .genre_tab_item a {
    position: relative;
  }
  .genre_tab_nav.jp .genre_tab_item:nth-child(5) {
    margin-left: 0;
  }
  .genre_tab_nav:not(.jp) .genre_tab_item:nth-child(5) {
    margin-left: 0;
  }
}
.genre_tab_nav,
.genre_tab_nav.jp,
.genre_tab_nav.en,
.genre_tab_nav.cn,
.genre_tab_nav.tw,
.genre_tab_nav.kr {
  /* Style for active tab */
  /* Hover effect for tabs */
}
.genre_tab_nav .genre_tab_item.active a,
.genre_tab_nav.jp .genre_tab_item.active a,
.genre_tab_nav.en .genre_tab_item.active a,
.genre_tab_nav.cn .genre_tab_item.active a,
.genre_tab_nav.tw .genre_tab_item.active a,
.genre_tab_nav.kr .genre_tab_item.active a {
  background-color: #000;
  color: #fff;
}
.genre_tab_nav .genre_tab_item a:hover,
.genre_tab_nav.jp .genre_tab_item a:hover,
.genre_tab_nav.en .genre_tab_item a:hover,
.genre_tab_nav.cn .genre_tab_item a:hover,
.genre_tab_nav.tw .genre_tab_item a:hover,
.genre_tab_nav.kr .genre_tab_item a:hover {
  background-color: #f4e04d;
}

@media screen and (min-width: 768px) {
  .genre_tab_nav {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    /* Safari対応 */
    position: sticky;
    top: 0;
    padding: 16px 0 0 0;
    border-bottom: 2px solid #000;
    border-top: 2px solid #000;
  }
  .genre_tab_nav .genre_tab_item a {
    display: inline-block;
    text-align: center;
    background: #fff;
    border-radius: 12px 12px 0 0;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    width: 48px;
    height: 50px;
    line-height: 5.2rem;
  }
  .genre_tab_nav .genre_tab_item a:hover {
    background: #000;
    color: #fff;
    opacity: 1;
  }
  .genre_tab_nav .genre_tab_item.active a {
    background: #000;
    color: #fff;
  }
  /* Adjust color for tabs 5-8 */
  .genre_tab_item:nth-child(n+5) a {
    background-color: #fff;
    color: #000;
  }
  /* Style for active tab */
  .genre_tab_item.active a {
    background-color: #000;
    color: #fff;
  }
  /* Hover effect for tabs */
  .genre_tab_item a:hover {
    background-color: #000;
    color: #fff;
  }
}
/* ==================================================
  nitaku_genre 06
================================================== */
/*SP*/
.genre_selection_container .genre_selection_list {
  width: 100%;
}
.genre_selection_container .genre_selection_list .genre_selection {
  margin-top: 80px;
  position: relative;
  text-align: center;
}
.genre_selection_container .genre_selection_list .genre_selection:first-child {
  margin-top: 0;
}

/* ==================================================
  share
================================================== */
@keyframes stretchVertical {
  0%, 100% {
    transform: translateY(-50%) scaleY(1);
  }
  50% {
    transform: translateY(-50%) scaleY(1.2);
  }
}
.share {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 40px;
  text-align: center;
  position: relative;
}
.share::before, .share::after {
  content: "";
  position: absolute;
  bottom: 5vw;
  transform: translateY(-50%);
  /* 画像の高さを調整 */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .share::before, .share::after {
    bottom: -8px;
  }
}
.share::before {
  left: 0;
  /* 左の位置調整 */
  background-image: url("../img/common/share_img_1.webp");
  /* 左側のキャラクター */
  transform: rotate(-15deg);
  max-width: 145px;
  max-height: 186px;
  width: 15vw;
  height: 19.2413793103vw;
}
@media screen and (min-width: 768px) {
  .share::before {
    left: 60px;
  }
}
.share::after {
  right: 0;
  /* 右の位置調整 */
  background-image: url("../img/common/share_img_2.webp");
  /* 右側のキャラクター */
  transform: rotate(15deg);
  max-width: 172px;
  max-height: 183px;
  width: 17vw;
  height: 18.0872093023vw;
}
@media screen and (min-width: 768px) {
  .share::after {
    right: 50px;
  }
}
.share .share_box_title {
  font-size: 4vw;
  margin: 0 3rem;
  font-weight: 700;
  line-height: 4.8rem;
  text-align: center;
  line-height: 1.5;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .share .share_box_title {
    font-size: 1.8rem;
    margin: 0 120px;
  }
}
.share .share_box_title::before, .share .share_box_title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.share .share_box_title::before {
  left: -30px;
  background-image: url("../img/common/share_deco_left.svg");
  background-size: cover;
  animation: stretchVertical 1.5s ease-in-out infinite;
}
@media screen and (min-width: 768px) {
  .share .share_box_title::before {
    left: -40px;
  }
}
.share .share_box_title::after {
  right: -30px;
  background-image: url("../img/common/share_deco_right.svg");
  background-size: cover;
  animation: stretchVertical 1.5s ease-in-out infinite;
  animation-delay: 0.3s;
}
@media screen and (min-width: 768px) {
  .share .share_box_title::after {
    right: -40px;
  }
}
.share .share_box {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.share_link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  color: white;
  border-radius: 166px;
  text-decoration: none;
  transition: 0.3s;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  height: auto;
  min-height: 44px;
  padding: 10px 5vw 10px 5vw;
}
.share_link.cn {
  background-color: #004832;
}
.share_link.tw {
  background-color: #004832;
}
@media screen and (min-width: 768px) {
  .share_link {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 264px;
    padding: 10px 40px 10px 40px;
  }
}
.share_link.line {
  background-color: #4cc764;
}
.share_link:hover {
  opacity: 0.8;
}
.share_link img {
  width: 40px;
  height: 40px;
  margin-right: 16px;
}
@media screen and (min-width: 768px) {
  .share_link img {
    width: 40px;
    height: 40px;
    margin-right: 16px;
  }
}
.share_link .share_text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.4rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .share_link .share_text {
    font-size: 2.4rem;
  }
}
.share .share_map_link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 16px;
  font-size: 16px;
  text-decoration: underline;
  font-weight: bold;
  color: inherit;
}
.share .share_map_link .external-link-icon {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  flex-shrink: 0;
}
.share .share_map_link:hover {
  opacity: 0.8;
}

/* ==================================================
  thisgenre_thiswork 08 10
================================================== */
.card_container {
  display: flex;
  justify-content: center;
}

.card_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  justify-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  overflow: hidden;
  max-width: 72vw;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: visible;
  margin-top: 7vw;
}
.card:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .card {
    max-width: 300px;
    margin-top: 0;
  }
}

.card_select_human {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  text-align: center;
  color: #fff;
}

.card_genre {
  position: relative;
  width: 72vw;
  margin: 0 auto 5px;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  padding: 16px 20px;
  color: #fff;
  background: rgb(128, 5, 5);
  box-shadow: inset 0 1px 0 0 rgb(242, 223, 158), inset 0 -1px 0 0 rgb(242, 223, 158);
  border-top: 2px solid rgb(128, 5, 5);
  border-bottom: 2px solid rgb(128, 5, 5);
  /* 左下の擬似要素 */
  /* 右下の擬似要素（画像を反転） */
}
@media screen and (min-width: 768px) {
  .card_genre {
    width: 260px;
  }
}
.card_genre::before {
  content: "";
  position: absolute;
  bottom: -21px;
  left: -19px;
  width: 40px;
  height: 60px;
  background-image: url("../img/common/bg_ribbon_left.svg");
  background-size: cover;
  z-index: -1;
}
.card_genre::after {
  content: "";
  position: absolute;
  bottom: -21px;
  right: -19px;
  width: 40px;
  height: 60px;
  background-image: url("../img/common/bg_ribbon_right.svg");
  background-size: cover;
  z-index: -1;
}

.card_content {
  position: relative;
  margin: 20px 0;
}
.card_content a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  transition: 0.3s;
  position: relative;
  top: 0;
  left: 0;
}
.card_content a::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background-color: black;
  border-radius: 16px;
  z-index: -1;
  transition: 0.3s;
}
.card_content a:hover {
  opacity: 1;
  position: relative;
  top: 5px;
  left: 5px;
}
.card_content a:hover::after {
  top: 0px;
  left: 0px;
}
.card_content a .card_thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .card_content a .card_thumbnail {
    height: 225px;
  }
}
.card_content a .card_thumbnail img {
  border-radius: 16px 16px 0 0;
  max-width: 100%;
  max-height: 100%;
}
.card_content a .card_details {
  padding: 16px;
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card_content a .card_details .card_title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 3rem;
  text-align: left;
  margin-bottom: 8px;
}
.card_content a .card_details .card_circle {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1rem;
  text-align: left;
  margin-bottom: 8px;
}
.card_content a .card_details .card_link {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  text-align: right;
  color: #000;
  margin-top: auto;
}

.card_description {
  background: #fff;
  padding: 24px;
  gap: 4px;
  border-radius: 24px;
  position: relative;
  overflow: visible;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.3);
}
.card_description::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 20px solid white;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.3));
  z-index: -1;
}
.card_description .card_comment {
  font-size: 1.4rem;
  line-height: 1.5;
}
.card_description .card_comment_title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.7rem;
  text-align: center;
  margin-bottom: 4px;
}
.card_description .card_comment_text {
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: left;
}

/* ==================================================
  saikyou 11
================================================== */
.saikyou_genre_title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}

.saikyou_genre_container .saikyou_genre_inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.saikyou_genre_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px 40px;
}
.saikyou_genre_block .saikyou_genre_item {
  max-width: 308px;
  width: 100%;
  height: 240px;
  background-image: url("../img/common/bg_frame.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.3);
  border: 6px solid;
  border-image-source: linear-gradient(270deg, #BF9400 0%, #F2DF9E 30%, #FFFFFF 50%, #F2DF9E 70%, #BF9400 100%);
  border-image-slice: 1;
}
.saikyou_genre_block .saikyou_genre_item a {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.saikyou_genre_block .saikyou_genre_item a .center {
  color: #fff;
  line-height: 1.5;
}
.saikyou_genre_block .saikyou_comment_box {
  background-color: #fff;
  padding: 24px 40px;
  border-radius: 24px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.3);
  max-width: 72vw;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .saikyou_genre_block .saikyou_comment_box {
    max-width: 590px;
  }
}
.saikyou_genre_block .saikyou_comment_box::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 20px solid white;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.3));
  z-index: -1;
}
.saikyou_genre_block .saikyou_comment_box .saikyou_comment_title {
  font-weight: bold;
  font-size: 1.8rem;
}
.saikyou_genre_block .saikyou_comment_box .saikyou_comment_text {
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .saikyou_genre_block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px 40px;
  }
  .saikyou_genre_block .saikyou_genre_item {
    max-width: 320px;
    width: 100%;
    height: 200px;
    background-image: url("../img/common/bg_frame.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.3);
    border: 6px solid;
    border-image-source: linear-gradient(270deg, #BF9400 0%, #F2DF9E 30%, #FFFFFF 50%, #F2DF9E 70%, #BF9400 100%);
    border-image-slice: 1;
  }
  .saikyou_genre_block .saikyou_genre_item a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  .saikyou_genre_block .saikyou_genre_item a .center {
    color: #fff;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .saikyou_genre_block .saikyou_genre_item a .center {
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .saikyou_genre_block .saikyou_comment_box {
    background-color: #fff;
    padding: 24px 40px;
    border-radius: 24px;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.3);
    max-width: 590px;
    width: 100%;
    position: relative;
  }
  .saikyou_genre_block .saikyou_comment_box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -26px;
    right: auto;
    margin: auto;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 20px solid white;
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.3));
    z-index: -1;
  }
  .saikyou_genre_block .saikyou_comment_box .saikyou_comment_title {
    font-weight: bold;
    font-size: 1.8rem;
  }
  .saikyou_genre_block .saikyou_comment_box .saikyou_comment_text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
/* ==================================================
  about
================================================== */
.tab_sell_text {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 5.2rem;
  text-align: center;
  margin-bottom: 8px;
}

.tab_last_text {
  font-size: clamp(1.4rem, 2.3vw + -0.3641rem, 2rem);
  padding: 0 7vw;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  color: #000;
}
@media screen and (min-width: 768px) {
  .tab_last_text {
    padding: 0;
  }
}
.tab_last_text .red {
  color: rgb(218, 0, 0);
}
.tab_last_text a {
  color: rgb(21, 124, 233);
}

.circle_container {
  position: relative;
  width: 150vw;
  height: 150vw;
  margin: auto auto auto -27vw;
  border-radius: 50%;
  background: linear-gradient(135deg, #E55353 0%, #F08B7A 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.circle_text {
  width: 96vw;
  position: absolute;
  top: 30vw;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  color: white;
}
.circle_text .small {
  font-size: 3.6vw;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  color: white;
}

.character_image01 {
  position: absolute;
  top: 10vw;
  left: 0;
  right: 0;
  margin: auto;
  width: 20vw;
  height: auto;
  max-width: 80px;
  max-height: 58px;
}

.character_image02 {
  position: absolute;
  bottom: -32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100vw;
  height: auto;
}

@media screen and (min-width: 768px) {
  .circle_container {
    position: relative;
    width: 640px;
    height: 640px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #E55353 0%, #F08B7A 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .circle_text {
    width: auto;
    position: absolute;
    top: 132px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: white;
  }
  .circle_text .small {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.8rem;
    text-align: center;
    color: white;
  }
  .character_image01 {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 58px;
  }
  .character_image02 {
    position: absolute;
    bottom: -32px;
    left: 0;
    right: 0;
    margin: auto;
    width: 480px;
    height: auto;
  }
}
.portal_link {
  text-align: center;
  max-width: 516px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.container_link {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.container_link img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.container_link .note {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  text-align: center;
}/*# sourceMappingURL=lp.css.map */