@charset "UTF-8";

/* ==========================================================================
   Setting
========================================================================== */
:root {
  --white: #FFF;
  --l-gray: #F6F6F6;
  --gray: #686868;
  --d-gray: #3B3B3B;
  --l-black: #1F1E1E;
  --black: #000;
  --d-black: #0E0E0E;
  --border1: #FFE6F7;
  --color1-d: #51137A;
  --color1: #601986;
  --color1-l: #CEA5EF;
  --color1-ll: #F8EEFF;
  --color2-d: #E84292;
  --color2: #FF449E;
  --color2-l: #FFC2E3;
  --color2-ll: #FFE6F7;
  --color3: #FFF6A4;
  --color3-l: #FFFAC2;
  --color3-ll: #FFFCE3;
  --gold: #FFC905;
  --red: #E8383D;
  --font-default: "Inter Tight", "Noto Sans JP", sans-serif;
  --font1: "Rubik", sans-serif;
}

/* ==========================================================================
   Loading
========================================================================== */
body #container::before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--d-black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 105;
  transition: opacity 1s cubic-bezier(.39, .575, .565, 1);
}
body.loaded #container::before {
  opacity: 0;
  pointer-events: none;
}

/*  Animation
================ */
.iv {
  opacity: 0;
  transform: translateY(2rem);
  transition: .4s ease-out;
  transition-property: opacity, transform;
}
.iv.show {
  opacity: 1;
  transform: translateY(0);
}
.iv._fadein {
  transform: translateY(0);
}


/* ==========================================================================
   Base
========================================================================== */
html {
  font-size: 87.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-default);
  line-height: 2;
  background: var(--color1);
  color: var(--white);
}


#wrap {
  background: var(--color2-l);
  color: var(--black);
  width: min(100%, 576px);
  margin-right: auto;
  margin-left: auto;
  box-shadow: 0 0 1rem var(--color1-d);
}

#content::before {
  content: '';
  display: block;
  width: 100%;
  height: 100vh;
  background: url(../img/kv/kv_b__sp.jpg) no-repeat center 20px / cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}


/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  color: var(--white);
  font-family: var(--font1);
  font-size: 1.125rem;
  font-weight: 700;
  width: 100%;
  height: 5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
#siteHeader::before {
  content: '';
  background: var(--color1);
  width: 100%;
  height: 5rem;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .5;
}

.inner-header {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo {
  margin: 0;
  width: 8rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 999;
}
#logo .logo__inner {
  display: block;
  margin: 0;
  color: inherit;
  position: relative;
}
#logo .logo__inner img {
  display: inline-block;
  vertical-align: middle;
}


@media(min-width: 992px){
  #siteHeader {
    width: calc((100vw - 576px)/2);
    height: 100%;
  }
  #siteHeader::before {
    display: none;
  }
  .inner-header {
    max-width: 30rem;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  #logo {
    width: min(100%,16rem);
    padding: 0 2.5rem;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Global Navigation
========================================================================== */
.gNav{
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;

  display: none;   
}
.gNav__inner {
  flex-direction: column;
  width: 100%;
  height: auto;
  background: var(--black);
    
  opacity: 0;
  transform: translateY(-70px);
  pointer-events: none;
  transition: .3s;
  transition-property: opacity, transform;
}
.gNav .navBar {
  max-width: 30rem;
  text-align: center;
  margin: 0 auto;
  padding: 5rem 0 1.5rem;
  font-size: 1.313rem;
  overflow-y: auto;
}
.gNav .navBar ul {
  margin: 2rem 2.5rem;
}
.gNav .navBar ul li a:hover {
  color: var(--color2);
}

/* OPEN */
.gNav.on .gNav__inner{
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Nav Btn */
.nav-btn {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 80px;
  height: 70px;
  position: relative;
}
.nav-btn i{
  display: block;
  background: currentColor;
  height: 2px;
  position: absolute;
  right: calc(40px/2);
  left: calc(40px/2);
  margin-top: -0.5px;
  transition: background .3s .3s, top .3s .3s, transform .3s;
}
.nav-btn i:nth-of-type(1){
  top: calc(50% - 4px);
}
.nav-btn i:nth-of-type(2){
  top: calc(50% + 4px);
}
.nav-btn.on i{
  border-radius: 2px;
  background: #B9B9B9;
  transition: background .3s, top .3s, transform .3s .3s;
}
.nav-btn.on i:nth-of-type(1){
  top: 50%;
  transform: rotate(20deg);
}
.nav-btn.on i:nth-of-type(2){
  top: 50%;
  transform: rotate(-20deg);
}


@media(min-width: 992px){
  .gNav{
    display: block !important;
    position: static;
    height: auto;
    background: transparent;
  }
  .gNav__inner {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    background: transparent;
  }
  .gNav .navBar {
    margin: 0;
    padding: 1.5rem 0 0;
    font-size: 1.5rem;
  }

  .nav-btn {
    display: none;
  }
}

/* ==========================================================================
   language links
========================================================================== */
ul.lang {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-default);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}
ul.lang li {
  display: inline-flex;
  align-items: center;
}
ul.lang li:not(:first-child)::before {
  content: '';
  display: inline-block;
  background: currentColor;
  width: 1px;
  height: 1em;
  transform: rotate(30deg);
}
ul.lang li > a,
ul.lang li > span {
  display: inline-flex;
  align-items: center;
  padding: .5em .75em;
}
ul.lang li > a:not(:hover) {
  opacity: .4;
}


/* ==========================================================================
   Social links
========================================================================== */
.menu-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .25em;
  font-size: 1.25rem;
}
.menu-ttl + ul.social {
  margin-top: .5rem;
}
ul.social {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: .857rem;
  font-weight: 400;
  line-height: 1;
}
ul.social li a {
  display: inline-block;
  align-items: center;
  gap: .5em;
}
ul.social li a svg {
  width: auto;
  height: 1.75rem;
  vertical-align: bottom;
}
ul.social li a svg.icon-youtube {
  height: 1.75em;
}

/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  clear: both;
  overflow: hidden;
  background: var(--color1);
  color: var(--white);
  margin-top: -1px;
  padding-top: 2.5em;
  padding-bottom: calc(2.5em + 60px);
  position: relative;
}
#siteFooter a:hover {
  opacity: .5;
}
#siteFooter .inner-footer {
  text-align: center;
  padding-top: 2.5em;
  padding-bottom: 1.5em;
}
#siteFooter #footerLogo {
  margin-bottom: 2rem;
}
#siteFooter .logo__inner {
  display: inline-block;
  color: inherit;
}

#siteFooter .footer-bottom {
  padding-top: 2.5em;
  padding-bottom: 2.5em;
  font-size: .8rem;
}
#siteFooter .footer-bottom nav ul {
  align-items: center;
}

#siteFooter .copyright {
  text-align: center;
}


/* ==========================================================================
   PC Footer Navigation
========================================================================== */

/* Fixed menu */
#fixed-menu {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 888;
}
#fixed-menu a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--color1);
  font-size: 1.25rem;
  line-height: 1.65;
}
#fixed-menu a:hover {
  background: var(--color1-ll);
  opacity: 1;
}
