@charset "UTF-8";

.wrapper{
    display:flex;
    justify-content: space-between;
}

/***********************************************
***  Header PC
***********************************************/
.header-pc-menu-container{
    margin-top:60px;
    text-align: center;
}
/* Nav items */
.header-pc-menu-lists{
list-style: none;
    position: absolute;
    width: 560px;
    box-shadow: 2px 2px 2px rgb(0 0 0 / 20%);
    height: 100vh;
    top: 0;
    left: 200px;
    margin-top: 0;
    padding: 0 0 10px 0;
    clear: both;
    background-color: #bc0b16;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
     transform: scale(0, 1); 
    transform-origin: left;
    z-index: 99999999;
}

/* Hamburger menu button */
.header-pc-menu-btn:checked ~ .header-pc-menu-lists {
  transform: scale(1, 1);
  transform-origin: left;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.header-pc-menu-list a {
        font-family: Ryumin Bold KL;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 22px;
  text-transform: capitalize;
  color: #fff;
  opacity: 0;
  transition: 0.5s;
        line-height: 3;
    width: 100%;
    height: 100%;
    display: block;
}
.header-pc-menu-list a span,
.header-pc-sub-menu-list a span{
    position:relative;
}
.header-pc-menu-list a span:before{
    position:absolute;
    content: "";
    background: url(../img/common/nav/icon-home.svg) no-repeat border-box center center/contain fixed content-box;
    left: -50px;
    bottom: -5px;
    width: 40px;
    height: 40px;
}
.header-pc-sub-menu-list a span:before{
    position:absolute;
    content: "";
    background: url(../img/common/nav/icon-sakura.svg) no-repeat border-box center center/contain fixed content-box;
    left: -40px;
    bottom: -20px;
    width:30px;
    height: 40px;
}
.header-pc-menu-list.news a span:before{
    background: url(../img/common/nav/icon-news.svg) no-repeat border-box center center/contain fixed content-box;
}
.header-pc-menu-list.faq a span:before{
    background: url(../img/common/nav/icon-faq.svg) no-repeat border-box center center/contain fixed content-box;
    width: 48px;
    left: -60px;
    bottom: -10px;
}
/*
.header-pc-menu-list.sponsor a span:before{
    background: url(../img/common/nav/icon-sponsor.svg) no-repeat border-box center center/contain fixed content-box;
    width: 42px;
    left: -56px;
    bottom: -10px;
}
.header-pc-menu-list.goods a span:before{
    background: url(../img/common/nav/icon-goods.svg) no-repeat border-box center center/contain fixed content-box;
    width: 32px;
}
*/
.header-pc-menu-list.ticket a span:before{
    background: url(../img/common/nav/icon-ticket.svg) no-repeat border-box center center/contain fixed content-box;
}

.header-pc-sub-menu-list.sakura a span:before{
    background: url(../img/common/nav/icon-sakura.svg) no-repeat border-box center center/contain fixed content-box;
}
.header-pc-sub-menu-list.fuji a span:before{
    background: url(../img/common/nav/icon-fuji.svg) no-repeat border-box center center/contain fixed content-box;
}

.header-pc-menu-list {
  border-bottom: 1px solid #fff;
  padding: 12px 0;
  margin: 0 54px;
  transition: 0.5s;
}
.header-pc-menu-list.ticket span{
line-height: 3;
}
.header-pc-menu-list .header-pc-sub-menu-list a.ticket{
    pointer-events:auto;
}
.header-pc-menu-btn:checked ~ .header-pc-menu-lists a,
.header-pc-menu-btn:checked ~ .header-pc-menu-list {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.header-pc-sub-menu-lists{
    display:flex;
    
}
.header-pc-sub-menu-list{
    width:50%;
}
.header-pc-sub-menu-list a{
    font-size: 13px;
        line-height: 0.5;
    width: 100%;
    height: 100%;
    display: block;
    margin-left: 20px;
    padding-bottom: 16px;
}
.header-pc-sub-menu-list:first-child{
    border-right:1px solid #fff;
}
.header-pc-menu-btn {
  display: none;
}

.header-pc-menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 19px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        z-index: 99999;
}

.header-pc-navicon {
  background: #bc0b16;
  display: block;
  height: 3px;
  width: 50px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.header-pc-navicon:before,
.header-pc-navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #bc0b16;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.header-pc-navicon:before {
  top: 12px;
}

.header-pc-navicon:after {
  bottom: 12px;
}

/* Hamburger Menu Animation Start */
.header-pc-menu-btn:checked ~ .header-pc-menu-icon .header-pc-navicon:before {
  transform: rotate(-45deg);
}

.header-pc-menu-btn:checked ~ .header-pc-menu-icon .header-pc-navicon:after {
  transform: rotate(45deg);
}

.header-pc-menu-btn:checked ~ .header-pc-menu-icon:not(.steps) .header-pc-navicon:before {
  top: 0;
}
.header-pc-menu-btn:checked ~ .header-pc-menu-icon:not(.steps) .header-pc-navicon:after {
  bottom: 0;
}

.header-pc-menu-btn:checked ~ .header-pc-menu-icon .header-pc-navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.header-pc-navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.header-pc-navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}

/***********************************************
***  Header スマホ
***********************************************/

.header-pc{
    width: 200px;
    padding: 20px 40px 40px;
    position: fixed;
    background: url(../img/common/bg_white.jpg);
    height: 100vh;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.10);
      position: fixed;
        z-index: 99;
}
.header-fixed-sp{
    display:none;
}
.main{
    width: calc(100% - 200px);
    margin-left: 200px;
}

@media only screen and (max-width: 1000px) {
.header-pc{
    width:160px;
          
    background: url(../img/common/bg_white.jpg);
}
.main{
    width: calc(100% - 160px);
    margin-left: 160px;
}
    .header-pc-menu-lists{

    left: 160px;
    }
}
@media only screen and (max-width: 800px) {
    .wrapper{
    display:inherit;
}
    .header-pc{
        display:none;
}
    .header-fixed-sp{
        display:block;
     width: 100%;
  font-size: 2em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}
    #fixed-header-sp {
         position: fixed;
                display: flex;
                justify-content: space-between;
        z-index: 99999;
        top: -42px;
        width: 100%;
        height: 40px;

        color: #fff;
        background: url(../img/common/bg_white.jpg);
        box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.40);
        box-sizing: border-box;
        transition: .5s;
}
    .header-fixed-sp-logo{
        width:100px;
                padding: 5px 10px;
    }
     .header-fixed-sp-logo img{
       vertical-align: top;
    }
#fixed-header-sp.is-show {
  top: 0;
}
    .main{
    width: 100%;
    margin-left: 0;
}
}

/* Nav items */
.header-fixed-sp-menu-lists{
  list-style: none;
  position: absolute;
  width: 100%;
      height: calc(100vh - 40px);
  top: 0;
    left: 0;
  margin-top: 40px;
  padding: 0 0 10px 0;
  clear: both;
      background-color: #bc0b16;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}

/* Hamburger menu button */
.header-fixed-sp-menu-btn:checked ~ .header-fixed-sp-menu-lists {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.header-fixed-sp-menu-list a {
        font-family: Ryumin Bold KL;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 22px;
  text-transform: capitalize;
  color: #fff;
  opacity: 0;
  transition: 0.5s;
        line-height: 3;
    width: 100%;
    height: 100%;
    display: block;
}
.header-fixed-sp-menu-list a span,
.header-fixed-sp-sub-menu-list a span{
    position:relative;
}
.header-fixed-sp-menu-list a span:before{
    position:absolute;
    content: "";
    background: url(../img/common/nav/icon-home.svg) no-repeat border-box center center/contain fixed content-box;
    left: -50px;
    bottom: -5px;
    width: 40px;
    height: 40px;
}
.header-fixed-sp-sub-menu-list a span:before{
    position:absolute;
    content: "";
    background: url(../img/common/nav/icon-sakura.svg) no-repeat border-box center center/contain fixed content-box;
    left: -40px;
    bottom: -20px;
    width:30px;
    height: 40px;
}
.header-fixed-sp-menu-list.news a span:before{
    background: url(../img/common/nav/icon-news.svg) no-repeat border-box center center/contain fixed content-box;
}
.header-fixed-sp-menu-list.faq a span:before{
    background: url(../img/common/nav/icon-faq.svg) no-repeat border-box center center/contain fixed content-box;
    width: 43px;
    left: -50px;
    bottom: -10px;
}
.header-fixed-sp-menu-list.ticket a span:before{
    background: url(../img/common/nav/icon-ticket.svg) no-repeat border-box center center/contain fixed content-box;
}

.header-fixed-sp-sub-menu-list.sakura a span:before{
    background: url(../img/common/nav/icon-sakura.svg) no-repeat border-box center center/contain fixed content-box;
}
.header-fixed-sp-sub-menu-list.fuji a span:before{
    background: url(../img/common/nav/icon-fuji.svg) no-repeat border-box center center/contain fixed content-box;
}
.header-fixed-sp-menu-list.faq a{
    line-height: 1.3;
    padding: 16px 0;
}

.header-fixed-sp-menu-list {
  border-bottom: 1px solid #fff;
  padding: 12px 0;
  margin: 0 54px;
  transition: 0.5s;
}
.header-fixed-sp-menu-list.ticket span{
line-height: 3;
}
.header-fixed-sp-menu-list .header-fixed-sp-sub-menu-list a.ticket{
    pointer-events:auto;
}
.header-fixed-sp-menu-btn:checked ~ .header-fixed-sp-menu-lists a,
.header-fixed-sp-menu-btn:checked ~ .header-fixed-sp-menu-list {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.header-fixed-sp-sub-menu-lists{
    display:flex;
    
}
.header-fixed-sp-sub-menu-list{
    width:50%;
}
.header-fixed-sp-sub-menu-list a{
    font-size: 13px;
        line-height: 0.5;
    width: 100%;
    height: 100%;
    display: block;
    margin-left: 20px;
    padding-bottom: 16px;
}
.header-fixed-sp-sub-menu-list:first-child{
    border-right:1px solid #fff;
}
.header-fixed-sp-menu-btn {
  display: none;
}

.header-fixed-sp-menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 19px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        z-index: 99999;
}

.header-fixed-sp-navicon {
  background: #bc0b16;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.header-fixed-sp-navicon:before,
.header-fixed-sp-navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #bc0b16;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.header-fixed-sp-navicon:before {
  top: 9px;
}

.header-fixed-sp-navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.header-fixed-sp-menu-btn:checked ~ .header-fixed-sp-menu-icon .header-fixed-sp-navicon:before {
  transform: rotate(-45deg);
}

.header-fixed-sp-menu-btn:checked ~ .header-fixed-sp-menu-icon .header-fixed-sp-navicon:after {
  transform: rotate(45deg);
}

.header-fixed-sp-menu-btn:checked ~ .header-fixed-sp-menu-icon:not(.steps) .header-fixed-sp-navicon:before {
  top: 0;
}
.header-fixed-sp-menu-btn:checked ~ .header-fixed-sp-menu-icon:not(.steps) .header-fixed-sp-navicon:after {
  bottom: 0;
}

.header-fixed-sp-menu-btn:checked ~ .header-fixed-sp-menu-icon .header-fixed-sp-navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.header-fixed-sp-navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.header-fixed-sp-navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}
@media only screen and (max-width: 800px) {

}