/*******************************
common
*******************************/
* {
  box-sizing: border-box; }
  *::selection {
    background-color: #999; }

html {
  overflow-y: scroll; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-style: normal;
  word-break: break-all;
  line-height: 1.7;
  position: relative;
  font-size: 16px; }
  @media screen and (max-width: 599px) {
    body {
      font-size: 3.75vw;
      font-weight: 500; } }

@media screen and (max-width: 599px) {
  .pc {
    display: none; } }

.sp {
  display: none; }
  @media screen and (max-width: 599px) {
    .sp {
      display: block; } }

.tab {
  display: none; }
  @media screen and (max-width: 1200px) {
    .tab {
      display: block; } }

img {
  vertical-align: top;
  max-width: 100%;
  height: auto; }

a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all  0.5s ease;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  border: none; }

a:hover {
  opacity: 0.5; }

ul, li {
  list-style-type: none; }

button {
  outline: none; }

/*******************************
header
*******************************/
header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  width: 100%;
  line-height: 1.6; }
  header .inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    header .inner #logo01 {
      width: 10%;
      margin-left: 2.13%; }
      @media screen and (max-width: 599px) {
        header .inner #logo01 {
          width: 35%; } }
      header .inner #logo01 a {
        display: block; }

#menuTrigger {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 100;
  width: 5.5em;
  height: 5.5em;
  background: #cc2f30; }
  @media screen and (max-width: 599px) {
    #menuTrigger {
      width: 4.285em;
      height: 4.285em; } }
  #menuTrigger p {
    width: 100%;
    text-align: center;
    font-family: bookmania, serif;
    font-weight: 400;
    line-height: 1;
    font-size: 1em;
    color: #fff;
    margin-top: -1.2em; }
    @media screen and (max-width: 599px) {
      #menuTrigger p {
        font-size: 0.7em; } }

#menuTrigger div,
#menuTrigger div span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box; }

#menuTrigger div {
  position: relative;
  width: 2.64em;
  height: 1.1em;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  margin-top: 0.4em; }

#menuTrigger div span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff; }

#menuTrigger div span:nth-of-type(1) {
  top: 0; }

#menuTrigger div span:nth-of-type(2) {
  top: 0.5em; }

#menuTrigger div span:nth-of-type(3) {
  bottom: 0; }

#menuTrigger.active {
  background: transparent; }

#menuTrigger.active div span:nth-of-type(1) {
  transform: translateY(0.5em) rotate(-22deg); }

#menuTrigger.active div span:nth-of-type(2) {
  opacity: 0; }

#menuTrigger.active div span:nth-of-type(3) {
  transform: translateY(-0.5em) rotate(22deg); }

#menuPanel {
  display: none;
  background: #d95553;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; }
  #menuPanel .inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 15vh 0 2.5em; }
    @media screen and (max-width: 599px) {
      #menuPanel .inner {
        display: block;
        margin: 0; } }
  #menuPanel #logo02 {
    width: 25%;
    margin: 0 5em 0 0; }
    @media screen and (max-width: 599px) {
      #menuPanel #logo02 {
        margin: 2.357em 3.75% 2em;
        width: 43.22%; } }
    #menuPanel #logo02 a {
      display: block; }
      #menuPanel #logo02 a img {
        width: 100%; }
  @media screen and (max-width: 599px) {
    #menuPanel nav {
      padding: 0 6.63%;
      margin-bottom: 1.5em; } }
  #menuPanel nav ul li {
    font-family: bookmania, serif;
    font-weight: 400;
    font-size: 1.75em; }
    @media screen and (max-width: 599px) {
      #menuPanel nav ul li {
        font-size: 1.285em; } }
    #menuPanel nav ul li:not(:last-child) {
      margin-bottom: 0.5em; }
    #menuPanel nav ul li a {
      display: block; }
  #menuPanel .sns {
    margin-bottom: 1.7em; }
    #menuPanel .sns ul {
      display: flex;
      justify-content: center;
      align-items: center; }
      #menuPanel .sns ul li {
        margin: 0 0.85em; }
        #menuPanel .sns ul li.x {
          width: 1.857em;
          height: auto; }
        #menuPanel .sns ul li.youtube {
          width: 2.75em;
          height: auto; }
        #menuPanel .sns ul li a {
          display: block; }
  #menuPanel .portal {
    width: 12em;
    margin: 0 auto; }
    #menuPanel .portal a {
      display: block; }

/*******************************
footer
*******************************/
#toTop {
  width: 4%;
  height: auto;
  position: fixed;
  bottom: 0;
  right: 0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  z-index: 500; }
  #toTop:hover {
    opacity: 0.5; }
  @media screen and (max-width: 599px) {
    #toTop {
      width: 3.57em;
      bottom: 6vw;
      right: 3vw; } }
  #toTop img {
    width: 100%; }

footer {
  background: #cc2f30;
  padding: 3.57em 0 6em;
  color: #fff; }
  footer .sunrise {
    margin: 0 auto 2em;
    width: 8em; }
    @media screen and (max-width: 599px) {
      footer .sunrise {
        width: 30%; } }
    footer .sunrise a {
      display: block; }
      footer .sunrise a img {
        width: 100%; }
  footer .bandainamco {
    width: 10em;
    margin: 0 auto 2.785em; }
    @media screen and (max-width: 599px) {
      footer .bandainamco {
        width: 40%; } }
    footer .bandainamco a {
      display: block; }
      footer .bandainamco a img {
        width: 100%; }
  footer #copyright {
    text-align: center;
    font-size: 81.25%;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    letter-spacing: 0.1em; }
    @media screen and (max-width: 599px) {
      footer #copyright {
        font-size: 78.5%; } }

/*******************************
colorbox
*******************************/
.popup01Wrap #cboxContent {
  margin-top: 2.5em; }
.popup01Wrap #cboxLoadedContent {
  background: transparent;
  padding: 0;
  box-shadow: none; }
.popup01Wrap #cboxClose {
  width: 3em;
  height: 3em;
  position: absolute;
  top: -3em;
  background: url(/roze/common/images/close01.svg) no-repeat 0 0;
  background-size: 3em;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }
  .popup01Wrap #cboxClose:hover {
    background: url(/roze/common/images/close01.svg) no-repeat 0 0;
    background-size: 3em;
    opacity: 0.7; }
.popup01Wrap #cboxOverlay {
  background: black;
  background: linear-gradient(45deg, black 0%, #787878 100%); }
  .popup01Wrap #cboxOverlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #cc2f30;
    background: linear-gradient(0deg, #cc2f30 0%, black 100%);
    width: 100%;
    height: 100%;
    opacity: 0.35; }

/*******************************
underlayer
*******************************/
#underlayer {
  background: #cc2f30; }
  #underlayer #wrap {
    background: #fff;
    padding-bottom: 5.7em; }
  #underlayer #title {
    background: url(/roze/common/images/bg01.png) 60% 0 no-repeat;
    background-size: cover;
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: bookmania, serif;
    font-weight: 600;
    color: #cc2f30;
    font-size: 3.85vw;
    letter-spacing: 0.05em;
    line-height: 1.2; }
    @media screen and (max-width: 599px) {
      #underlayer #title {
        height: 40vw;
        font-size: 2.57em; } }
    #underlayer #title .inner {
      margin-top: 0.35em; }
    #underlayer #title .light01 {
      font-weight: 300; }
  #underlayer .innerCommon01 {
    width: 1200px;
    max-width: 95%;
    margin: -0.35em auto 0; }
    @media screen and (max-width: 599px) {
      #underlayer .innerCommon01 {
        width: auto;
        margin: -0.25em 3.73% 0; } }

#coming {
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #cc2f30;
  background: #fff;
  font-family: bookmania, serif;
  font-weight: 600;
  color: #cc2f30;
  font-size: 3em;
  letter-spacing: 0.03em; }
  @media screen and (max-width: 1200px) {
    #coming {
      height: 54vh;
      font-size: 3.5vw; } }
  @media screen and (max-width: 599px) {
    #coming {
      height: 20vh;
      font-size: 2em; } }
  #coming p {
    margin-top: 1.5em; }
    @media screen and (max-width: 599px) {
      #coming p {
        margin-top: 3em; } }
