@charset "UTF-8";

/* -----------------------------------------
- root ( var )
----------------------------------------- */
:root {
  /* header_height */
  --header_height: 70px;
  /*--header_height_sp: 60px;*/

  /* font-family */
  --font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;

  /* color */
  --txt: #fff;
  --pink: #fd0294;
  --color_el: #ff1d9d;
  --color_micha: #00a5fb;
  --color_geil: #ffef4c;
  --color_uril: #f77430;
  --color_san: #94fc49;
  --color_metro: #673ff9;
  --color_ranpha: #000;

  /* font-weight */
  --light: 300;
  --normal: 400;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --extrabold: 800;
  --black: 900;
}
/* font-size clamp - min-width: 1100px */
:root {
  --clamp_14px: clamp(13px, 1.273vw, 14px);
  --clamp_16px: clamp(14px, 1.455vw, 16px);
  --clamp_18px: clamp(15px, 1.636vw, 18px);
  --clamp_20px: clamp(16px, 1.818vw, 20px);
  --clamp_22px: clamp(20px, 2vw, 22px);
  --clamp_24px: clamp(22px, 2.182vw, 24px);
  --clamp_26px: clamp(24px, 2.364vw, 26px);
  --clamp_28px: clamp(26px, 2.545vw, 28px);
  --clamp_30px: clamp(27px, 2.727vw, 30px);
  --clamp_32px: clamp(30px, 2.909vw, 32px);
  --clamp_36px: clamp(32px, 3.273vw, 36px);
}
@media screen and (max-width: 767px) {
:root {
  /* font-size clamp w375px */
  --clamp_12px: clamp(11px, 3.2vw, 12px);
  --clamp_14px: clamp(13px, 3.733vw, 14px);
  --clamp_16px: clamp(13px, 4.267vw, 16px);
  --clamp_17px: clamp(15px, 4.533vw, 17px);
  --clamp_18px: clamp(16px, 4.8vw, 18px);
  --clamp_20px: clamp(18px, 5.333vw, 20px);
  --clamp_22px: clamp(19px, 5.867vw, 22px);
  --clamp_24px: clamp(22px, 6.4vw, 24px);
  --clamp_26px: clamp(24px, 6.933vw, 26px);
  --clamp_28px: clamp(26px, 7.467vw, 28px);
  --clamp_30px: clamp(28px, 8vw, 30px);
  --clamp_32px: clamp(30px, 8.533vw, 32px);
  }
}

/* .is-fadeIn
-------------------------- */
.is-fadeIn {
  animation: is-fadeIn ease .5s;
}
@keyframes is-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* .u-fade-in
-------------------------- */
.u-fade-in {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease, visibility 1s ease;
  transition-delay: 1s;
}
.u-fade-in_00 {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease, visibility 1s ease;
  transition-delay: .5s;
}
.u-fade-in.active {
  opacity: 1;
  visibility: visible;
}
.u-fade-in_01 {
  transition-delay: 1s;
}
.u-fade-in_02 {
  transition-delay: 2s;
}
.u-fade-in_03 {
  transition-delay: 3s;
}
.u-fade-in_04 {
  transition-delay: 4.5s;
}

/* --------------------------------
scrollbar
------------------------------------- */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  background-color: #000;
}
::-webkit-scrollbar-thumb {
  background-color: var(--pink);
  border-radius: 6px;
}
.no_scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: hidden;
}
.no_scrollbar::-webkit-scrollbar {
  display: none;
}

/* --------------------------------
  outline
------------------------------------- */
html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 1000px) {
  html {
    scroll-behavior: smooth;
    scroll-margin-top: var(--header_height);
  }
}
body {
  color: var(--txt);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--regular);
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1;
  text-align: left;
  background: #000;
  color: #fff;
  animation: is-fadeIn ease .5s;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-feature-settings: "palt";
  overflow-x: hidden;
}
.body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../img/fixed_bg.png) no-repeat;
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 767px) {
  .body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url(../img/fixed_bg_sp.png) no-repeat;
    background-size: cover;
    background-position: top center;
  }
}

.no-scroll {
  overflow: hidden;
}
.main {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}
.contents {
  transition: .5s;
}

/* .inner_xxx */
.inner_w1366 {
  position: relative;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  transition: .5s;
}
.inner_w1100 {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  transition: .5s;
}
.inner_w1024 {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  transition: .5s;
}
.inner {
  position: relative;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  transition: .5s;
}
@media screen and (max-width: 1366px) {
  .inner,
  .inner_w1366 {
    max-width: 98%;
  }
}
@media screen and (max-width: 1100px) {
  .inner_w1100 {
    max-width: 96%;
  }
}
@media screen and (max-width: 1024px) {
  .inner_w1024 {
    max-width: 96%;
  }
}
@media screen and (max-width: 767px) {
  .inner,
  .inner_w1366 {
    max-width: 100%;
  }
  .inner_w1100,
  .inner_w1024 {
    max-width: 92.5333%;/*347px*/
  }
}

/* --------------------------------
.pc-only / .sp-only
------------------------------------- */
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
span.pc-only {
  display: inline;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  span.pc-only {
    display: none;
  }
}

/* --------------------------------
  common---
------------------------------------- */
section {
  margin: 0 auto;
}
a {
  color: var(--txt);
  text-decoration: none;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  a {
    transition: .25s;
  }
  a:hover {
    opacity: .7;
  }
}

h1 {
  font-weight: var(--bold);
}
h2 {
  font-weight: var(--black);
}
h3 {
  font-weight: var(--black);
}
h4 {
  font-weight: var(--bold);
}
ul,
ul li,
ol,
ol li {
  list-style: none;
  color: var(--txt);
  font-size: 16px;
  line-height: calc(30/16);
}
dt,
dd {
  color: var(--txt);
  font-size: 16px;
  line-height: calc(30/16);
}
dd {
  font-weight: var(--regular);
}
p {
  display: inline-block;
  color: var(--txt);
  font-weight: var(--regular);
  word-break: break-word;
}
img {
  flex-shrink: 0;
  object-fit: contain;
}
figure {}
figcaption {
  display: inline-block;
  color: var(--txt);
  font-weight: var(--regular);
  line-height: 2;
  word-break: break-word;
}
iframe {
  border: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: var(--clamp_32px);
  }
  h2 {
    font-size: var(--clamp_20px);
  }
  h3 {
    font-size: var(--clamp_18px);
  }
  h4 {
    font-size: var(--clamp_18px);
  }
}

/*  common--- heading
------------------------------------- */
.sec-heading {
  display: block;
  margin: 0 auto 25px;
  font-weight: var(--black);
  font-size: var(--clamp_36px);
  line-height: calc(54/36);
  text-align: center;
}
.sec-read {
  display: block;
  margin: 0 auto 20px;
  font-weight: var(--regular);
  font-size: var(--clamp_26px);
  line-height: calc(52/26);
  text-align: center;
}
.sec-txt {
  display: block;
  margin: 0 auto 50px;
  font-weight: var(--regular);
  font-size: 16px;
  line-height: calc(30/16);
  text-align: center;
}
.sec-img {
  display: block;
  margin: 0 auto 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-heading {
    display: block;
    margin: 0 auto 25px;
    font-weight: var(--black);
    font-size: var(--clamp_36px);
    line-height: calc(54/36);
    text-align: center;
  }
  .sec-read {
    display: block;
    margin: 0 auto 27px;
    font-weight: var(--regular);
    font-size: var(--clamp_22px);
    line-height: calc(41/22);
    text-align: center;
    font-feature-settings: "pkna";
  }
  .sec-txt {
    display: block;
    width: 94%;
    margin: 0 auto 30px;
    font-weight: var(--regular);
    font-size: 14px;
    line-height: calc(30/14);
    text-align: left;
    font-feature-settings: "pkna";
  }
  .sec-img {
    margin: 0 auto 50px;
  }
}

/* --------------------------------
  common--- class
------------------------------------- */
.flex {
  display: flex;
}
@media screen and (max-width: 767px) {}

/* .c- (common / class)
------------------------------------- */
/* .txt */
.p-txt {
  display: block;
  margin-bottom: 1.9em;
  font-weight: var(--regular);
  font-size: 16px;
  line-height: calc(30/16);
  text-align: left;
  font-feature-settings: "pkna";
}
.txt {
  font-weight: var(--regular);
  font-size: 16px;
  line-height: calc(30/16);
  text-align: left;
  font-feature-settings: "pkna";
}
.txt_small {
  font-size: 12px;
}
.txt_right {
  width: 100%;
  text-align: right;
}
.txt_center {
  width: 100%;
  text-align: center;
}
.txt_link {
  text-decoration: underline;
}
.txt_link:hover {
  text-decoration: underline;
}
.txt_indent_1em {
  padding-left: 1em;
  text-indent: -1em;
}
.nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-txt {
    margin-bottom: 1.9em;
    font-size: var(--clamp_14px);
    line-height: calc(30/14);
  }
  .txt {
    font-size: var(--clamp_14px);
    line-height: calc(30/14);
  }
}

/* --------------------------------
  .header
------------------------------------- */
.header {
  position: relative;
  z-index: 999;
  width: 100%;
  height: 0;
  transition: .25s;
}
@media screen and (max-width: 767px) {
  .header {
    position: relative;
    z-index: 999;
    width: 100%;
    height: 0;
    transition: .25s;
  }
  .logo_switch {
    width: 65px;
  }
}

/* .g_navigation
-------------------------- */
.g_navigation {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 70px;
  background: #000;
}
.g_navigation-box {
  padding: 0 3.66%;
}
/* .nav-inner */
.nav-inner {
  display: flex;
  align-items: center;
  width: 89.6%;
}
.nav-header {
  width: 100%;
}
.nav-logo {
  flex-shrink: 0;
  margin-right: 18px;
  margin-top: -7px;
}
.nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-list li {
  flex-shrink: 0;
  font-weight: var(--black);
  white-space: nowrap;
}
.nav-list .nav-item {
  margin-top: -10px;
}
.nav-list .nav-list a {
  font-weight: var(--black);
}
.nav-list .nav-txt {
  display: block;
  margin-bottom: -20px;
  font-size: 20px;
  font-weight: var(--regular);
}
@media screen and (max-width: 1080px) {
  .nav-inner {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .g_navigation {
    position: absolute;
    top: 0;
    width: 100%;
    height: 65px;
    background: unset;
  }
  .g_navigation-box {
    padding: 0;
  }
  .nav-inner {
    display: flex;
    display: none;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    padding-bottom: 100px;
    background: #000;
    overflow-y: auto;
  }
  .nav-box.active .nav-inner {
    display: block;
  }
  .nav-header {
    width: 100%;
  }
  .nav-logo {
    width: 100%;
    margin: 7px auto 10px;
    text-align: center;
  }
  .nav-logo img {
    width: 30%;
  }
  .nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 26px 0;
    width: 100%;
    text-align: center;
  }
  .nav-list .nav-item {
    margin: 0 auto;
  }
  .nav-list .nav-item img {
    width: 90%;
  }
  .nav-list .nav-txt {
    display: block;
    margin-bottom: -6px;
    font-size: 20px;
    font-weight: var(--regular);
  }
}
@media screen and (max-width: 767px) {
}

/* .ham_btn_box
-------------------------- */
@media screen and (min-width: 1000px) {
  .ham_btn_box {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .ham_btn_box {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: 65px;
    height: 65px;
    margin-left: auto;
    cursor: pointer;
    color: #fff;
    background: #000;
  }
  .ham_btn_box .ham_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
    margin: 0 auto;
    width: 36px;
    height: 20px;
  }
  .ham_btn_box .ham_btn span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
  }
  .ham_btn_box .ham_btn,
  .ham_btn_box .ham_btn span {
    transition: .3s;
  }
  .ham_btn_box .ham_btn.close {
    top: 30px;
    width: 36px;
  }
  .ham_btn_box .ham_btn.close span {
    background-color: #fff;
  }
  .ham_btn_box .ham_btn span:nth-of-type(1) {
    top: 0;
  }
  .ham_btn_box .ham_btn span:nth-of-type(2) {
    top: 10px;
  }
  .ham_btn_box .ham_btn span:nth-of-type(3) {
    right: 0;
    bottom: 0;
  }
  .ham_btn_box .ham_btn.close span:nth-of-type(1) {
    transform: translateY(13px) rotate(-25deg);
  }
  .ham_btn_box .ham_btn.close span:nth-of-type(2) {
    opacity: 0;
    animation: opacity ease .5s;
  }
  .ham_btn_box .ham_btn.close span:nth-of-type(3) {
    transform: translateY(-5px) rotate(25deg);
  }
}

/* --------------------------------
  .sec
------------------------------------- */
.sec {
  position: relative;
  padding: 80px 0 80px;
}
@media screen and (max-width: 767px) {
  .sec {
    position: relative;
    padding: 20px 0 25px;
  }
}

/* --------------------------------
  section - .fv
------------------------------------- */
.fv {
  position: relative;
  width: 100%;
  height: 710px;
  background: url(../img/fv.png) no-repeat;
  background-size: cover;
  background-position: top center;
}
.fv .inner_w1366 {
  height: 100%;
  max-width: 1600px;
}
@media screen and (max-width: 767px) {
  .fv {
    height: 176vw;
    background: url(../img/fv_sp.png) no-repeat;
    background-size: cover;
    background-position: top center;
  }
  .fv .inner_w1366 {
    height: 100%;
    max-width: 100%;
  }
}

/* .fv-logo_top
-------------------------- */
.fv-logo_top {
  position: absolute;
  top: -30px;
  left: 5px;
  width: 682px;
  transition: ease 1s;
}
@media screen and (max-width: 1150px) {
  .fv-logo_top {
    top: -20px;
    left: 50px;
    width: 522px;
  }
}
@media screen and (max-width: 767px) {
  .fv-logo_top {
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translate(-50%,0);
    width: 64%;
    max-width: 682px;
  }
}

/* .fv-heading
-------------------------- */
.fv-heading {
  position: absolute;
  top: 3.7vw;
  right: 7.5vw;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: flex-start;
  font-size: 28px;
  font-weight: var(--regular);
  line-height: 2;
}
.fv-heading-txtbox {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
}
.fv-heading-txt {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: .13em;
  font-feature-settings: "pkna";
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .fv-heading {
    position: relative;
    top: 110px;
    right: unset;
    display: block;
    font-size: var(--clamp_20px);
    line-height: 1.65;
  }
  .fv-heading-txtbox {
    display: flex;
    flex-direction: row-reverse;
    width: auto;
  }
  .fv-heading-txtbox:nth-child(1) {
    position:absolute;
    right: 36px;
  }
  .fv-heading-txtbox:nth-child(2) {
    position:absolute;
    left: 25px;
  }
  .fv-heading-txt {
    letter-spacing: .13em;
  }
}

/* .fv-detail
-------------------------- */
.fv-detail {
  position: absolute;
  bottom: 5.5vw;
  bottom: 77px;
  left: 10vw;
  display: flex;
  flex-direction: column;
  width: 378px;
}
@media screen and (max-width: 767px) {
  .fv-detail {
    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translate(-50%,0);
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 378px;
  }
}
@media screen and (max-width: 480px) {
  .fv-detail {
    bottom: 165px;
  }
}

/* .fv-check
-------------------------- */
.fv-check {
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .fv-check {
    display: none;
  }
}

/* .fv-price
-------------------------- */
.fv-price {
  display: flex;
  justify-content: center;
}
.fv-price-txtbox {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0 10px;
}
.fv-price-txt {
  flex-shrink: 0;
  font-size: 17px;
  font-weight: var(--bold);
}
.fv-price-num {
  flex-shrink: 0;
  font-size: 64px;
  font-weight: var(--bold);
}
@media screen and (max-width: 767px) {
  .fv-price {
    display: flex;
    width: 100%;
  }
  .fv-price-txtbox {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 10px;
    width: 100%;
    padding-left: 25%;
  }
  .fv-price-txt_01 {
    display: block;
    width: 90%;
    flex-shrink: 0;
  }
  .fv-price-num {
    font-size: 50px;
  }
}

/* .fv-linkbtn
-------------------------- */
.fv-linkbtn {
  position: absolute;
  right: 1.4vw;
  bottom: 2.9vw;
  transition: .25s;
}
@media screen and (max-width: 767px) {
  .fv-linkbtn {
    position: absolute;
    left: unset;
    right: 50%;
    transform: translate(50%,0);
    width: 100%;
    bottom: 35px;
    text-align: center;
  }
  .fv-linkbtn img {
    width: 86%;
    margin: 0 auto;
  }
}

/* .linkbtn-link
-------------------------- */
.linkbtn-link {
  width: 100%;
  max-width: 386px;
  height: 70px;
  margin: 0 auto;
}
.linkbtn-link .linkbtn-txt {
  font-size: 22px;
  text-align: center;
}
.linkbtn-link .linkbtn-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  box-shadow: inset 0 0 25px var(--pink), 0 0 25px var(--pink);
  border-radius: 35px;
  transition: .4s;
}
.linkbtn-link .linkbtn-btn::after {
  position: absolute;
  right: 30px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #ffffff;
  border-right: 0;
  transition: .5s;
}
.linkbtn-link .linkbtn-btn:hover {
  opacity: 1;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.linkbtn-link .linkbtn-btn:hover::after {
  border-left: 18px solid var(--pink);
}
@media screen and (max-width: 767px) {
  .linkbtn-link {
    width: 100%;
    max-width: 300px;
    height: 60px;
    margin: 0 auto;
  }
  .linkbtn-link .linkbtn-txt {
    font-size: 22px;
    text-align: center;
  }
  .linkbtn-link .linkbtn-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    box-shadow: inset 0 0 25px var(--pink), 0 0 25px var(--pink);
    border-radius: 35px;
    transition: .4s;
  }
  .linkbtn-link .linkbtn-btn::after {
    position: absolute;
    right: 25px;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 15px solid #ffffff;
    border-right: 0;
    transition: .5s;
  }
  .linkbtn-link .linkbtn-btn:hover {
    opacity: 1;
    color: var(--pink);
    border: 2px solid var(--pink);
  }
  .linkbtn-link .linkbtn-btn:hover::after {
    border-left: 18px solid var(--pink);
  }
}

/* .linkbtn-dl
-------------------------- */
.linkbtn-dl {
  display: flex;
  align-items: center;
  justify-content: center;
}
.linkbtn-dl .linkbtn-btn {
  background: transparent;
}
.linkbtn-dl .linkbtn-btn:hover {
  background: url(../img/btn_dl_01_hv.png) no-repeat;
  background-size: contain;
  background-position: center;
}
.linkbtn-dl .linkbtn-btn img {
  transition: .25s;
}
.linkbtn-dl .linkbtn-btn:hover {
  opacity: 1;
}
.linkbtn-dl .linkbtn-btn:hover img {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .linkbtn-dl {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* .fv-information
-------------------------- */
.fv-information {
  position: absolute;
  bottom: 0;
  z-index: 999;
  width: 100%;
  min-height: 47px;
  margin: 0 auto;
  background: #000;
}
.fv-information-txtbox {
  display: flex;
  align-items: flex-start;
  padding: 12px 24px;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: calc(24/16);
}
.fv-information-heading {
  flex-shrink: 0;
  display: flex;
  gap: 0 18px;
  margin-right: 46px;
  padding: 4px 0 0;
  font-size: 12px;
}
.fv-information-datebox {
  display: flex;
  gap: 0 18px;
}
.fv-information::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: url(../img/line_l.png) no-repeat;
}
@media screen and (max-width: 767px) {
  .fv-information {
    position: relative;
    bottom: 56px;
    z-index: 9999;
    width: 100%;
    min-height: 56px;
    margin: 0 auto;
    background: #000;
  }
  .fv-information-txtbox {
    display: flex;
    align-items: flex-start;
    padding: 10px 0 ;
    width: 100%;
    height: 100%;
    font-size: 16px;
    line-height: calc(24/16);
  }
  .fv-information-heading {
    display: flex;
    flex-direction: column;
    gap: 4px 0;
    width: 120px;
    margin-right: 34px;
    padding: 4px 0 0;
    font-size: 10px;
  }
  .fv-information-datebox {
    display: flex;
    gap: 0;
    flex-direction: column;
    font-size: 14px;
  }
  .fv-information::after {
    display: none;
  }
}

.line_s {
  display: block;
  width: 100%;
  max-width: 274px;
  height: 1px;
  margin: 0 auto;
  background: url(../img/line_s.png) no-repeat;
  background-position: center;
  background-size: 100%;
}
.line_l {
  display: block;
  width: 100%;
  max-width: 1024px;
  height: 1px;
  margin: 0 auto;
  background: url(../img/line_l.png) no-repeat;
  background-position: center;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .line_s {
    max-width: 205px;
  }
  .line_l {
    max-width: 87.2%;
  }
}

/* --------------------------------
  section - .story
------------------------------------- */
.story {
  padding: 10px 0;
  background: url(../img/story_bg.png) no-repeat;
  background-size: cover;
  background-position: top -75px center;
}
.story::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 157px;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.story_txtbox {
  position: relative;
  z-index: 1;
  width: 634px;
  padding: 40px 34px;
  margin: 80px 0 120px auto;
  background: rgba(0,4,40,.55);
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0,4,40,.55), 0 0 20px rgba(0,4,40,.55);
}
.story_txtbox .sec-heading {
  display: block;
  text-align: left;
  margin: 0;
}
.story_txtbox .sec-heading {
  margin-top: -37px;
  margin-left: -34px;
}
.story_txtbox .txt {
  margin-top: -9px;
  line-height: calc(35/16);
}
@media screen and (max-width: 767px) {
  .story {
    padding: 40px 0;
    background: url(../img/story_bg_sp.png) no-repeat;
    background-size: cover;
    background-position: top -35px center;
  }
  .story::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  }
  .story_txtbox {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 42px 30px;
    margin: 20px auto 30px;
  }
  .story_txtbox .sec-heading {
    display: block;
    text-align: left;
    margin: 0;
    width: 80%;
  }
  .story_txtbox .sec-heading {
    width: 77%;
    margin-top: -37px;
    margin-left: -30px;
  }
  .story_txtbox .txt {
    margin-top: -10px;
    font-size: 16px;
    line-height: calc(35/16);
  }
}

/* --------------------------------
  section - .system
------------------------------------- */
.system {
  padding-bottom: 170px;
  background: url(../img/system_bg.png) no-repeat;
  background-size: cover;
  background-position: top center;
}

/* .system-battleroyale_moba */
.system-battleroyale_moba {
  position: relative;
  margin: 0 auto 20px;
  padding: 20px 0 38px;
  text-align: center;
  overflow: hidden;
}
.battleroyale_moba-slidebox {
  width: 100%;
  max-width: 813px;
  margin: 0 auto;
}
.battleroyale_moba-slidebox .swiper--wrapper {
  width: 100%;
  max-width: 813px;
}
.battleroyale_moba-slidebox img {
  width: 100%;
}

/* .system_rgb_change */
.system-rgb_change {
  margin: 0 auto 60px;
  padding: 25px 0 40px;
}
.system-rgb_change .sec-heading {
  margin: 0 auto;
}
.system-rgb_change .sec-read {
  margin: -15px auto 15px;
}
.system-rgb_change .rgb_change-txtbox_01 {
  margin: 0 auto 30px;
}
.system-rgb_change .rgb_change-txtbox_01 .sec-txt {
  margin: 0 auto 30px;
  font-size: 14px;
}
.system-rgb_change .rgb_change-txtbox_02 {
  position: relative;
  display: flex;
}
.system-rgb_change .rgb_change-txtbox_02 .txtbox {
  position: absolute;
  top: 122px;
  left: 0;
  width: 80%;
}
.system-rgb_change .rgb_change-txtbox_02 img {
  margin-left: auto;
  margin-right: 4%;
}

/* .system-skill */
.system-skill {
  padding: 20px 0;
}
.system-skill .sec-heading {
  margin: 0 auto;
}
.system-skill .sec-read {
  margin: -15px auto 50px;
}
.system-skill .flex {
  gap: 0 4%;
}
@media screen and (max-width: 980px) {
  .system-rgb_change .rgb_change-txtbox_02 .txtbox {
    position: relative;
    top: 0;
    left: 0;
    width: 50%;
  }
  .system-rgb_change .rgb_change-txtbox_02 img {
    width: 50%;
    margin-left: auto;
    margin-right: 0;
  }
  .system-skill .flex img {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .system {
    padding-bottom: 46px;
  }
  .system-battleroyale_moba {
    margin: 0 auto 20px;
    padding: 25px 0 35px;
  }
  .system-battleroyale_moba .sec-heading {
    width: 71%;
    margin: 0 auto;
  }
  .system-battleroyale_moba .sec-img {
    width: 100%;
  }
  .system-rgb_change {
    margin: 0 auto 30px;
    padding: 25px 0 35px;
  }
  .system-rgb_change .sec-heading {
    width: 71%;
    margin: 0 auto 8px;
  }
  .system-rgb_change .sec-read {
    margin: 0 auto 10px;
  }
  .system-rgb_change .rgb_change-txtbox_01 {
    margin: 0 auto 34px;
  }
  .system-rgb_change .rgb_change-txtbox_01 .sec-txt {
    width: 94.3%;
    margin: 0 auto 50px;
    font-size: 14px;
  }
  .system-rgb_change .rgb_change-txtbox_02 {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .system-rgb_change .rgb_change-txtbox_02 .txtbox {
    position: relative;
    top: 0;
    left: 0;
    width: 94.3%;
    margin: 0 auto;
  }
  .system-rgb_change .rgb_change-txtbox_02 img {
    margin: -10px auto;
    width: 100%;
    max-width: 537px;
  }
  .system-skill {
    padding: 20px 0;
  }
  .system-skill .sec-heading {
    width: 65%;
    margin: 0 auto;
  }
  .system-skill .sec-read {
    margin: 0 auto 30px;
  }
  .system-skill .flex {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
  .system-skill .flex img {
    width: 100%;
    max-width: 526px;
    margin: 0 auto 27px;
  }
  .system-skill .flex .txtbox {
    width: 94%;
    margin: 0 auto;
  }
}

/* --------------------------------
  swiper - common -.slidebox
------------------------------------- */
/* .swiper-pagination */
.slidebox .swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0,0,0);
  z-index: 10;
}
.slidebox .swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.slidebox .swiper-horizontal>.swiper-pagination-bullets,
.slidebox .swiper-pagination-bullets.swiper-pagination-horizontal,
.slidebox .swiper-pagination-custom,.swiper-pagination-fraction {
  bottom: 0;
  left: 0;
  width: 100%;
}
.slidebox .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.slidebox .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 15px;
  background: transparent;
  border: 1px solid #fff;
}
.slidebox .swiper-pagination-bullet {
  background: #fff;
  width: 14px;
  height: 14px;
  opacity: 1;
}
.slidebox .swiper-pagination-bullet-active {
  background: #fff!important;
}

/* .click_slide */
.slidebox .click_slide {
  cursor: pointer;
}

/* --------------------------------
  section - .character
------------------------------------- */
.character {
  padding-bottom: 170px;
}
.character .sec-heading {
  margin: 0 auto 6px;
}
.character-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding-bottom: 40px;
}
.character-box .character_image {
  max-width: 463px;
  margin-left: 3.5%;
}
.character-box:nth-child(odd) .character_image {
  order: 1;
}
.character-box .character_image img {
  display: block;
  margin: 0 0 -6%;
}
/* .character- //each */
.character-el .character_image {
  background: url(../img/character_el_under.png) no-repeat;
  background-size: contain;
  background-position: bottom 6% center;
}
.character-micha .character_image {
  background: url(../img/character_micha_under.png) no-repeat;
  background-size: contain;
  background-position: bottom 8% center;
}
.character-micha .character_image img {
  margin: 0 0 -6% 10%;
}
.character-geil .character_image {
  background: url(../img/character_geil_under.png) no-repeat;
  background-size: contain;
  background-position: bottom 8% center;
}
.character-geil .character_image img {
  margin: 0 0 -4% 2%;
}
.character-uril .character_image {
  background: url(../img/character_uril_under.png) no-repeat;
  background-size: contain;
  background-position: bottom 8% center;
}
.character-uril .character_image img {
  margin: 0 0 -2% 4%;
}
.character-san .character_image {
  background: url(../img/character_san_under.png) no-repeat;
  background-size: contain;
  background-position: bottom 8% center;
}
.character-san .character_image img {
  margin: 0 0 -4% 11%;
}
.character-metro .character_image {
  background: url(../img/character_metro_under.png) no-repeat;
  background-size: contain;
  background-position: bottom 8% center;
}
.character-metro .character_image img {
  margin: 0 0 -2% 6%;
}
.character-ranpha .character_image {
  background: url(../img/character_ranpha_under.png) no-repeat;
  background-size: contain;
  background-position: bottom 8% center;
}
.character-ranpha .character_image img {
  margin: 0 0 -2% 12%;
}
/* .character-box .slidebox .swiper-pagination */
.character-box .slidebox .swiper-pagination {
  position: relative;
}
@media screen and (max-width: 767px) {
  .character-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding-bottom: 40px;
  }
  .character-box .character_image {
    max-width: 95%;
    margin: 0 auto;
  }
  .character-box:nth-child(odd) .character_image {
    order: unset;
  }
  .character-box .character_image img {
    max-width: 74%;
  }
  /* .character- //each */
  .character-el .character_image {
    background: url(../img/character_el_under.png) no-repeat;
    background-size: contain;
    background-position: bottom 16% center;
  }
  .character-el .character_image img {
    margin: 0;
  }
  .character-micha .character_image {
    background: url(../img/character_micha_under.png) no-repeat;
    background-size: contain;
    background-position: bottom 16% center;
  }
  .character-micha .character_image img {
    margin: 0 0 2% 12%;
  }
  .character-geil .character_image {
    background: url(../img/character_geil_under.png) no-repeat;
    background-size: contain;
    background-position: bottom 16% center;
  }
  .character-geil .character_image img {
    margin: 0 0 2% 3%;
  }
  .character-uril .character_image {
    background: url(../img/character_uril_under.png) no-repeat;
    background-size: contain;
    background-position: bottom 16% center;
  }
  .character-uril .character_image img {
    margin: 0 0 2% 3%;
  }
  .character-san .character_image {
    background: url(../img/character_san_under.png) no-repeat;
    background-size: contain;
    background-position: bottom 16% center;
  }
  .character-san .character_image img {
    margin: 0 auto 2%;
  }
  .character-metro .character_image {
    background: url(../img/character_metro_under.png) no-repeat;
    background-size: contain;
    background-position: bottom 16% center;
  }
  .character-metro .character_image img {
    margin: 0 0 2% 6%;
  }
  .character-ranpha .character_image {
    background: url(../img/character_ranpha_under.png) no-repeat;
    background-size: contain;
    background-position: bottom 16% center;
  }
  .character-ranpha .character_image img {
    margin: 0 0 2% 14%;
  }
  .character-box .slidebox .swiper-horizontal>.swiper-pagination-bullets,
  .character-box .slidebox .swiper-pagination-bullets.swiper-pagination-horizontal,
  .character-box .slidebox .swiper-pagination-custom,.swiper-pagination-fraction {
    bottom: 40px;
    left: 0;
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px)  {
  .character-box .character_image {
    max-width: 500px;
  }
  .character-box .txtbox {
    max-width: 500px;
  }
  .character-box .character_image img {
    margin: 0 auto 2%;
  }
}

/* .character-box .txtbox */
.character-box .txtbox {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 458px;
}
.character-box .txtbox .name {
  margin-left: -35px;
  margin-bottom: -15px;
}
.character-box .txtbox .cv {
  margin-bottom: 20px;
}

/* .character-box .voice */
.character-box .voice {
  display: flex;
  gap: 0 18px;
  margin-bottom: 10px;
}
.character-box .voice .voicebtn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 132px;
  height: 33px;
  padding-left: 30px;
  border-radius: 16.5px;
  border: 2px solid #fff;
  filter: drop-shadow(0 0 3px #fff);
}
.character-el .voice .voicebtn {
  background: var(--color_el);
  border: 2px solid var(--color_el);
  filter: drop-shadow(0 0 3px var(--color_el));
}
.character-micha .voice .voicebtn {
  background: var(--color_micha);
  border: 2px solid var(--color_micha);
  filter: drop-shadow(0 0 3px var(--color_micha));
}
.character-geil .voice .voicebtn {
  background: var(--color_geil);
  border: 2px solid var(--color_geil);
  filter: drop-shadow(0 0 3px var(--color_geil));
}
.character-uril .voice .voicebtn {
  background: var(--color_uril);
  border: 2px solid var(--color_uril);
  filter: drop-shadow(0 0 3px var(--color_uril));
}
.character-san .voice .voicebtn {
  background: var(--color_san);
  border: 2px solid var(--color_san);
  filter: drop-shadow(0 0 3px var(--color_san));
}
.character-metro .voice .voicebtn {
  background: var(--color_metro);
  border: 2px solid var(--color_metro);
  filter: drop-shadow(0 0 3px var(--color_metro));
}
.character-ranpha .voice .voicebtn {
  background: var(--color_ranpha);
  border: 2px solid var(--color_ranpha);
  filter: drop-shadow(0 0 3px #Fff);
}
.character-box .voice .voicebtn.white.is-playing {
  border: 2px solid #fff;
}
.character-box .voice .voicebtn.black.is-playing {
  border: 2px solid #000;
}
@media screen and (min-width: 768px) {
  .character-box .voice .voicebtn.white:hover {
    border: 2px solid #fff;
  }
  .character-box .voice .voicebtn.black:hover {
    border: 2px solid #000;
  }
}
@media screen and (max-width: 767px) {
  .character-box .voice {
    display: flex;
    gap: 0 18px;
    margin-bottom: 12px;
  }
}

.character-el {
  background: url(../img/character_el_bg.png) no-repeat;
  background-size: auto 100%;
  background-position: center right 40px;
}
.character-micha {
  background: url(../img/character_micha_bg.png) no-repeat;
  background-size: auto 100%;
  background-position: center left -40px;
}
.character-geil {
  background: url(../img/character_geil_bg.png) no-repeat;
  background-size: auto 100%;
  background-position: center right 40px;
}
.character-uril {
  background: url(../img/character_uril_bg.png) no-repeat;
  background-size: auto 100%;
  background-position: center left -40px;
}
.character-san {
  background: url(../img/character_san_bg.png) no-repeat;
  background-size: auto 100%;
  background-position: center right 40px;
}
.character-metro {
  background: url(../img/character_metro_bg.png) no-repeat;
  background-size: auto 100%;
  background-position: center left -40px;
}
.character-ranpha {
  background: url(../img/character_ranpha_bg.png) no-repeat;
  background-size: auto 100%;
  background-position: center right 40px;
}
@media screen and (max-width: 767px) {
  .character {
    padding-bottom: 20px;
    background: transparent;
  }
  .character .inner_w1024 {
    max-width: 100%;
  }
  .character .sec-heading {
    width: 93%;
    margin: 4px auto 16px;
  }
  .character-box .txtbox {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 88%;
    margin: 0 auto;
  }
  .character-box .txtbox .name {
    width: 50%;
    margin: -30px auto -24px;
    text-align: center;
  }
  .character-ranpha .txtbox .name {
    margin: -25px auto -10px;
  }
  .character-box .txtbox .cv {
    margin-bottom: 20px;
  }
  .character-el {
    background: url(../img/character_el_bg.png) no-repeat;
    background-size: 100%;
    background-position: center bottom -40px;
  }
  .character-micha {
    background: url(../img/character_micha_bg.png) no-repeat;
    background-size: 100%;
    background-position: center bottom -40px;
  }
  .character-geil {
    background: url(../img/character_geil_bg.png) no-repeat;
    background-size: 100%;
    background-position: center bottom -40px;
  }
  .character-uril {
    background: url(../img/character_uril_bg.png) no-repeat;
    background-size: 100%;
    background-position: center bottom -40px;
  }
  .character-san {
    background: url(../img/character_san_bg.png) no-repeat;
    background-size: 100%;
    background-position: center bottom -40px;
  }
  .character-metro {
    background: url(../img/character_metro_bg.png) no-repeat;
    background-size: 100%;
    background-position: center bottom -40px;
  }
  .character-ranpha {
    background: url(../img/character_ranpha_bg.png) no-repeat;
    background-size: 100%;
    background-position: center bottom -40px;
  }
}

/* --------------------------------
  section - .customize
------------------------------------- */
.customize {
  padding-bottom: 60px;
}
.customize .sec-heading {
  margin: 0 auto 45px;
}
.customize .sec-img {
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .customize {
    padding-bottom: 30px;
  }
  .customize .sec-heading {
    margin: 0 auto 20px;
  }
  .customize .sec-img {
    margin: 0 auto 35px;
  }
}

/* --------------------------------
  section - .scenario
------------------------------------- */
.scenario {
  padding-bottom: 60px;
}
.scenario .sec-heading {
  margin: 0 auto 45px;
}
.scenario .sec-img {
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .scenario {
    padding-bottom: 30px;
  }
  .scenario .sec-heading {
    width: 88%;
    margin: 0 auto 20px;
  }
  .scenario .sec-img {
    margin: 0 auto 40px;
  }
}

/* --------------------------------
  section - .season
------------------------------------- */
.season {
  padding-bottom: 60px;
}
.season .sec-heading {
  margin: 0 auto 15px;
}
.season-event-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px 0;
  width: 100%;
  margin: 0 auto 40px;
}
.season-heading {
  display: block;
  margin: 0 auto;
  font-size: 30px;
  font-weight: var(--regular);
}
.event-title {
  display: block;
  margin: 0 auto;
  font-size: 19px;
  font-weight: var(--semibold);
  line-height: calc(32/19);
  text-align: center;
}
.season-eventbox .event-txt {
  font-size: 19px;
  font-weight: var(--semibold);
  line-height: calc(32/19);
}
.season-eventbox .flex {
  display: flex;
  justify-content: space-between;
  gap: 0 1%;
  width: 70%;
  margin: 0 auto;
  text-align: center;
}
.season-eventbox .flex div {
  width: calc(100% / 2);
}
@media screen and (max-width: 767px) {
  .season {
    padding-bottom: 30px;
  }
  .season .sec-heading {
    width: 72%;
    margin: 0 auto 5px;
  }
  .season-event-info {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 28px 0;
    width: 100%;
    margin: 0 auto 40px;
  }
  .season-heading {
    display: block;
    margin: 0 auto;
    font-size: var(--clamp_20px);
    line-height: calc(30/20);
    font-weight: var(--regular);
  }
  .event-title {
    display: block;
    margin: 0 auto;
    font-size: var(--clamp_17px);
    line-height: calc(29/17);
    text-align: center;
  }
  .season-eventbox .event-txt {
    font-size: var(--clamp_17px);
    line-height: calc(29/17);
    text-align: left;
    font-feature-settings: "pkna";
  }
  .season-eventbox .flex {
    display: flex;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
  }
  .season-eventbox .flex div {
    width: 100%;
    margin: 0 auto 55px;
  }
}

/* --------------------------------
  section - .ranking
------------------------------------- */
@media screen and (max-width: 767px) {
  .ranking {
    padding: 30px 0;
  }
  .ranking .sec-heading {
    width: 80%;
    margin: 0 auto;
  }
}

/* --------------------------------
  section - .promotion
------------------------------------- */
.modaal-inner-wrapper {
  padding: 80px 0;
}
.modaal-inner-wrapper .modaal-video-wrap {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .promotion {
    padding: 30px 0 60px;
  }
  .promotion .sec-heading {
    width: 88%;
    margin: 0 auto;
  }
}

/* .linkbtn-dl_02 */
.linkbtn-dl_02 {
  margin: 80px auto 65px;
}
.linkbtn-dl_02 .linkbtn-btn {
  background: transparent;
}
.linkbtn-dl_02 .linkbtn-btn:hover {
  background: url(../img/btn_dl_02_hv.png) no-repeat;
  background-size: contain;
  background-position: center;
}
.linkbtn-dl_02 .linkbtn-btn img {
  transition: .25s;
}
.linkbtn-dl_02 .linkbtn-btn:hover img {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .linkbtn-dl_02 {
    width: 98%;
    margin: 20px auto 40px;
  }
}
/* --------------------------------
  .footer
------------------------------------- */
.footer {
  width: 100%;
  background: #fff;
  padding: 5px 0 30px;
  color: #fff;
  text-align: center;
}
.footer .footer-logo_otorakobo {
  width: 230px;
  margin: 0 auto;
}
.footer .copyright small {
  display: inline-block;
  color: #000;
  font-weight: var(--regular);
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 10px 0;
  }
  .footer .footer-logo_otorakobo {
    width: 168px;
    margin: 0 auto;
  }
  .footer .copyright small {
    font-size: 12px;
  }
}

/* --------------------------------
  class
------------------------------------- */
.color-txt {
  color: var(--txt);
}
.color-pink {
  color: var(--pink);
}
.center {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.right {
  display: block;
  text-align: right;
}

/* --------------------------------
  add
------------------------------------- */
@media screen and (max-width: 767px) {}

