@charset "UTF-8";
/* ==================================================
  基本要素/汎用クラス
================================================== */
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%;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "Noto Sans", 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;
}
body.cntw {
  font-family: "noto-sans-sc", 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;
      -ms-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;
      -ms-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;
          appearance: revert;
}

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

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-ms-input-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;
      -ms-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(1.6rem, 5.333vw, 4rem);
}
.lp_header .header_sns a {
  display: flex;
}
.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: 10vw 0;
}
.all_container.first {
  padding: 10vw 0 10vw;
}
@media screen and (min-width: 768px) {
  .all_container {
    padding: 64px 0;
  }
  .all_container.first {
    padding: 64px 0 64px;
  }
}
.all_container .all_inner {
  max-width: 980px;
  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: 2rem;
  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: 0;
  bottom: 0;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.all_container .all_inner .all_genre_title h2.h2_text::before {
  content: "";
}
.all_container .all_inner .all_genre_title h2.h2_text::after {
  right: 0;
  left: 0;
  top: auto;
  bottom: -50px;
  margin: auto;
  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: -2px;
    bottom: 0;
    margin: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .all_container .all_inner .all_genre_title h2.h2_text::before {
    left: -124px;
  }
  .all_container .all_inner .all_genre_title h2.h2_text::after {
    left: auto;
    right: -124px;
    margin: 0;
  }
}

.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 {
  -webkit-filter: invert(1);
          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;
  -webkit-transform: translate(0.8rem, 0.8rem);
          transform: translate(0.8rem, 0.8rem);
}
.lp_main .cta_button:active .cta_button__front {
  -webkit-transform: translate(0.8rem, 0.8rem);
          transform: translate(0.8rem, 0.8rem);
}
.lp_main .cta_button:active .cta_button__front--grayOut {
  -webkit-transform: none;
          transform: none;
}
.lp_main .cta_button--grayOut {
  -webkit-transform: none;
          transform: none;
}
.lp_main .cta_button--grayOut:hover {
  -webkit-transform: none;
          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;
  -webkit-transform: none !important;
          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;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.lp_main .cta_button__about:hover::before {
  -webkit-animation: key1 0.2s ease infinite alternate;
          animation: key1 0.2s ease infinite alternate;
}
@-webkit-keyframes key1 {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
}
@keyframes key1 {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-3px);
            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;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.lp_main .cta_button__shadow {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0.8rem, 0.8rem);
          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;
  -webkit-transform: translate(0.8rem, 0.8rem);
          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: #CCECFF url(../img/common/bg_grid.svg);
}
.lp_main .bg_deepblue {
  position: relative;
  background: rgb(21, 124, 233) url(../img/common/bg_blue.webp) top center no-repeat;
  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 {
  width: 100%;
  height: 100%;
  background-color: #FBD620;
  background-image: url(../img/common/bg_ranking_pc.webp);
  background-repeat: repeat-y;
  background-attachment: fixed;
  background-size: cover;
  position: fixed;
  top: 0;
  z-index: -1;
}
.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;
  -webkit-transform: scaleY(-1);
          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;
  -webkit-transform: translateY(-4rem);
          transform: translateY(-4rem);
  transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  will-change: opacity, transform;
}

.frame_area {
  position: relative;
  top: 0;
  padding: 5.6rem 1.4rem;
  background: #fff;
  border-radius: 1.6rem;
  border: 2px solid #000;
  width: 100%;
}
.frame_area::after {
  content: "";
  position: absolute;
  right: -1.2rem;
  bottom: -1.2rem;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.6rem;
  border: 2px solid #000;
  background: #00A2FF;
  z-index: -10;
}

.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;
}

/* ==================================================
  フッター
================================================== */
.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%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
          transform: translate(-50%, -20%) rotate(-45deg);
}
.lp_pagetop.is_show {
  -webkit-animation: fadein 0.3s forwards;
          animation: fadein 0.3s forwards;
}
.lp_pagetop.is_hide {
  -webkit-animation: fadeout 0.3s forwards;
          animation: fadeout 0.3s forwards;
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* ==================================================
  fv
================================================== */
.fv {
  position: relative;
}
.fv .fv_logo {
  position: relative;
  margin-bottom: 3vw;
}
.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;
  -webkit-transform: rotateZ(-6deg);
          transform: rotateZ(-6deg);
}
.fv .fv_logo .fv_img_right {
  position: absolute;
  bottom: 0;
  right: auto;
  left: 0;
  width: 17vw;
  -webkit-transform: rotateZ(6deg);
          transform: rotateZ(6deg);
}
@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: -15vw;
    width: auto;
  }
  .fv .fv_logo .fv_img_right {
    position: absolute;
    bottom: -104px;
    right: -15vw;
    left: auto;
    width: auto;
  }
}
.fv .fv_title {
  width: 70vw;
  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: 154px 0 64px;
  }
}
.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: -webkit-fit-content;
  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: relative;
  left: -20vw;
}
.fv .fv_chara_sp img {
  width: 25vw;
}
.fv .fv_chara_sp .fv_img_left {
  position: relative;
  top: 4vw;
  -webkit-transform: rotateZ(-6deg);
          transform: rotateZ(-6deg);
}
.fv .fv_chara_sp .fv_img_right {
  position: relative;
  top: 8vw;
  -webkit-transform: rotateZ(6deg);
          transform: rotateZ(6deg);
}
.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%;
  -webkit-transform: translateX(-50%);
          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%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffcd00;
}

/*各種背景設定*/
.fv {
  background-image: url(../img/jp/fv_bg_pc.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.fv.jp {
  background-image: url(../img/jp/fv_bg_sp.webp);
}
@media screen and (min-width: 768px) {
  .fv.jp {
    background-image: url(../img/jp/fv_bg_pc.webp);
  }
}
.fv.en {
  background-image: url(../img/en/fv_bg_sp.webp);
}
@media screen and (min-width: 768px) {
  .fv.en {
    background-image: url(../img/en/fv_bg_pc.webp);
  }
}
.fv.cn {
  background-image: url(../img/cn/fv_bg_sp.webp);
}
@media screen and (min-width: 768px) {
  .fv.cn {
    background-image: url(../img/cn/fv_bg_pc.webp);
  }
}
.fv.tw {
  background-image: url(../img/tw/fv_bg_sp.webp);
}
@media screen and (min-width: 768px) {
  .fv.tw {
    background-image: url(../img/tw/fv_bg_pc.webp);
  }
}
.fv.kr {
  background-image: url(../img/kr/fv_bg_sp.webp);
}
@media screen and (min-width: 768px) {
  .fv.kr {
    background-image: url(../img/kr/fv_bg_pc.webp);
  }
}

/* ==================================================
  about
================================================== */
.about {
  width: 100%;
  margin: auto;
  margin-bottom: 80px;
}
.about_inner {
  position: relative;
  padding-top: 12rem;
}
@media screen and (min-width: 768px) {
  .about_body {
    padding: 5.6rem 1.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: 2.4rem;
    line-height: 4.8rem;
  }
}
.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;
  -webkit-filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.3));
          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%;
}

.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_world_list {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.3);
  padding: 24px 8px 24px 8px;
}

.data_world_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.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_world_list {
    padding: 40px 24px;
  }
  .data_world_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}
/*世界別*/
.data_world_list.sekaibetu .data_world_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.data_world_list.sekaibetu .data_world_item .data_world_image01 {
  max-width: 900px;
  width: 100%;
  max-height: 443px;
  height: 100%;
}
.data_world_list.sekaibetu .data_world_item .data_world_image02 {
  width: 100%;
  max-height: 191px;
  height: 100%;
  text-align: center;
}

/*スライダーエリア*/
.splide__list .splide__slide img {
  width: 80%;
}

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

.splide__arrow--next {
  background-image: url("../img/common/icon_arrow_black.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0);
}

.splide__arrow--prev {
  background-image: url("../img/common/icon_arrow_black.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  top: 48.5%;
}

/* ==================================================
  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(2.3rem, 8.9vw + -4.5263rem, 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%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-width: 20px 8px 0;
  border-style: solid;
  border-color: #000 transparent transparent;
}
.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;
}
@media screen and (min-width: 768px) {
  .ranking_block .ranking_item {
    min-width: 430px;
    margin-left: 0;
    padding: 12px 64px 12px 64px;
  }
}
.ranking_block .ranking_item .ranking_genre {
  font-size: clamp(2rem, 7.8vw + -3.9826rem, 4rem);
  font-weight: 700;
  line-height: 2;
  text-align: center;
  color: #000;
}
@media screen and (min-width: 768px) {
  .ranking_block .ranking_item .ranking_genre {
    font-size: 3.2rem;
  }
}
.ranking_block .ranking_item .ranking_genre:hover {
  text-decoration: underline;
}
.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: -webkit-min-content;
    width: min-content;
    min-width: 395px;
    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 {
  font-size: clamp(1.8rem, 7vw + -3.569rem, 3.6rem);
  line-height: 3.6rem;
  font-weight: 700;
}
@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;
  }
}
.ranking_block .ranking_item .ranking_badge {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  width: 60px;
  height: 60px;
  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 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 5.2rem;
  text-align: center;
  margin-top: 144px;
}
@media screen and (min-width: 768px) {
  .floor_heading {
    font-size: 2.4rem;
  }
}

.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;
}
.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 .genre_tab_item:nth-child(5) {
  margin-left: -150px;
}

@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 .genre_tab_item:nth-child(5) {
    margin-left: 0;
  }
}
/* Adjust color for tabs 5-8 */
.genre_tab_item:nth-child(n+5) a {
  background-color: #ffeb75;
  height: 78px;
}

/* 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: #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
================================================== */
.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;
  -webkit-transform: translateY(-50%);
          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: 4vw;
  /* 左の位置調整 */
  background-image: url("../img/common/share_img_1.webp");
  /* 左側のキャラクター */
  -webkit-transform: rotate(-15deg);
          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: 4vw;
  /* 右の位置調整 */
  background-image: url("../img/common/share_img_2.webp");
  /* 右側のキャラクター */
  -webkit-transform: rotate(15deg);
          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: 3.5vw;
  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: 2.4rem;
    margin: 0 120px;
  }
}
.share .share_box_title::before, .share .share_box_title::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-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;
}
@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;
}
@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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  height: auto;
  min-height: 44px;
  padding: 10px 5vw 10px 5vw;
}
@media screen and (min-width: 768px) {
  .share_link {
    width: -webkit-fit-content;
    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;
  }
}

/* ==================================================
  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;
  -webkit-filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.3));
          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;
  -webkit-filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.3));
          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;
    -webkit-filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.3));
            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: 3.2vw;
  padding: 0 7vw;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  color: #000;
  margin-bottom: 5vw;
}
@media screen and (min-width: 768px) {
  .tab_last_text {
    font-size: 2.4rem;
    padding: 0;
    margin-bottom: 64px;
  }
}
.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-color: white;
  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;
}
.circle_text .small {
  font-size: 3.6vw;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.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-color: white;
    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;
  }
  .circle_text .small {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.8rem;
    text-align: center;
  }
  .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;
}/*# sourceMappingURL=lp.css.map */