@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{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent; font-weight:normal;}
body{line-height:1;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
nav ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}ins{background-color:#ff9;color:#000;text-decoration:none;}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}del{text-decoration:line-through;}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help;}table{border-collapse:collapse;border-spacing:0;}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0;}input,select{vertical-align:middle;}
img{vertical-align:bottom;}
ol,ul {list-style:none;}


html,body{
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    font-size: 13px;
    line-height: 150%;
    font-weight: 300;
    color: #000;
    background-color: #FFF;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

i{
  margin-right: 6px;
}
.pc_only{
  display: block;
}
.sp_only{
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc_only{
    display: none;
  }
  .sp_only{
    display: block;
  }
}
/*----------------------------------------------------
 webfont
--------------------------------------------------- */


/*----------------------------------------------------
 link
--------------------------------------------------- */

a:link,
a:visited,
a:active{
  color: #000;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
a:hover{
    color: #aacc03;
    text-decoration: none;
}

/*----------------------------------------------------
  #wrapper
--------------------------------------------------- */
#loading{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF url(../../img/memory/logo.png) no-repeat center center;
  background-size:140px;
  z-index: 1000;
}
#loading.out{
  opacity: 0;
    -webkit-transition: all 0.7s linear;
       -moz-transition: all 0.7s linear;
        -ms-transition: all 0.7s linear;
         -o-transition: all 0.7s linear;
            transition: all 0.7s linear;
}

#wrapper{
  margin: 0 auto;
  position: relative;
  width: 100%;
    -webkit-transition: all 0.5s cubic-bezier(0.790, 0.010, 0.245, 0.995);
       -moz-transition: all 0.5s cubic-bezier(0.790, 0.010, 0.245, 0.995);
        -ms-transition: all 0.5s cubic-bezier(0.790, 0.010, 0.245, 0.995);
         -o-transition: all 0.5s cubic-bezier(0.790, 0.010, 0.245, 0.995);
            transition: all 0.5s cubic-bezier(0.790, 0.010, 0.245, 0.995);
}
#wrapper.out{
  -webkit-transform: scale3d(1,1,1) translate3d(-220px,0px,0px);
     -moz-transform: scale3d(1,1,1) translate3d(-220px,0px,0px);
      -ms-transform: scale3d(1,1,1) translate3d(-220px,0px,0px);
       -o-transform: scale3d(1,1,1) translate3d(-220px,0px,0px);
          transform: scale3d(1,1,1) translate3d(-220px,0px,0px);

}

/*----------------------------------------------------
  #menu
--------------------------------------------------- */
#menu{
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
    width: 100%;
    height:100%;
    z-index: 999;
    background: #FFF;
    color: #000;
    opacity: 0;
    text-align: center;
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
         -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
}
#menu.view{
  opacity: 1;
  -webkit-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
     -moz-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
      -ms-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
       -o-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
          transform: scale3d(1,1,1) translate3d(0%,0px,0px);
  
}
#menu .inner{
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  text-align: center;
}
#menu ul.menu{
}
#menu ul.menu li{
  margin-bottom: 25px;
  opacity: 0;
  -webkit-transform: scale3d(0.9,0.9,0.9) translate3d(0%,0px,0px);
     -moz-transform: scale3d(0.9,0.9,0.9) translate3d(0%,0px,0px);
      -ms-transform: scale3d(0.9,0.9,0.9) translate3d(0%,0px,0px);
       -o-transform: scale3d(0.9,0.9,0.9) translate3d(0%,0px,0px);
          transform: scale3d(0.9,0.9,0.9) translate3d(0%,0px,0px);
}
#menu.view ul.menu li:nth-child(1){
  opacity: 1;
    -webkit-transition: all 0.5s 0.3s ease;
       -moz-transition: all 0.5s 0.3s ease;
        -ms-transition: all 0.5s 0.3s ease;
         -o-transition: all 0.5s 0.3s ease;
            transition: all 0.5s 0.3s ease;
  -webkit-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
     -moz-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
      -ms-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
       -o-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
          transform: scale3d(1,1,1) translate3d(0%,0px,0px);
}
#menu.view ul.menu li:nth-child(2){
  opacity: 1;
    -webkit-transition: all 0.5s 0.4s ease;
       -moz-transition: all 0.5s 0.4s ease;
        -ms-transition: all 0.5s 0.4s ease;
         -o-transition: all 0.5s 0.4s ease;
            transition: all 0.5s 0.4s ease;
  -webkit-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
     -moz-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
      -ms-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
       -o-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
          transform: scale3d(1,1,1) translate3d(0%,0px,0px);
}
#menu.view ul.menu li:nth-child(3){
  opacity: 1;
    -webkit-transition: all 0.5s 0.5s ease;
       -moz-transition: all 0.5s 0.5s ease;
        -ms-transition: all 0.5s 0.5s ease;
         -o-transition: all 0.5s 0.5s ease;
            transition: all 0.5s 0.5s ease;
  -webkit-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
     -moz-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
      -ms-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
       -o-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
          transform: scale3d(1,1,1) translate3d(0%,0px,0px);
}
#menu.view ul.menu li:nth-child(4){
  opacity: 1;
    -webkit-transition: all 0.5s 0.6s ease;
       -moz-transition: all 0.5s 0.6s ease;
        -ms-transition: all 0.5s 0.6s ease;
         -o-transition: all 0.5s 0.6s ease;
            transition: all 0.5s 0.6s ease;
  -webkit-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
     -moz-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
      -ms-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
       -o-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
          transform: scale3d(1,1,1) translate3d(0%,0px,0px);
}
#menu.view ul.menu li:nth-child(5){
  opacity: 1;
    -webkit-transition: all 0.5s 0.7s ease;
       -moz-transition: all 0.5s 0.7s ease;
        -ms-transition: all 0.5s 0.7s ease;
         -o-transition: all 0.5s 0.7s ease;
            transition: all 0.5s 0.7s ease;
  -webkit-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
     -moz-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
      -ms-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
       -o-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
          transform: scale3d(1,1,1) translate3d(0%,0px,0px);
}
#menu.view ul.menu li:nth-child(6){
  opacity: 1;
    -webkit-transition: all 0.5s 0.8s ease;
       -moz-transition: all 0.5s 0.8s ease;
        -ms-transition: all 0.5s 0.8s ease;
         -o-transition: all 0.5s 0.8s ease;
            transition: all 0.5s 0.8s ease;
  -webkit-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
     -moz-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
      -ms-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
       -o-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
          transform: scale3d(1,1,1) translate3d(0%,0px,0px);
}
#menu ul.menu li a{
  color: #000;
  line-height: 1;
  font-size: 20px;
  letter-spacing: 0.2em;
  margin: 0 10px;
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
         -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
}
#menu ul.menu li a:hover{
  opacity: 0.5;
}

@media only screen and (max-width: 768px) {
  #menu ul.menu li a{
    font-size: 16px;
  }
}
/*----------------------------------------------------
  #menuButton
--------------------------------------------------- */
#menuButton {
    position: fixed;
    top: 50%;
    left: 0px;
    display: block;
    margin-top: -40px;
    width: 100px;
    height:80px;
    z-index: 1000;
  -webkit-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
     -moz-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
      -ms-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
       -o-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
          transform: scale3d(1,1,1) translate3d(0%,0px,0px);
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
         -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
}

@media only screen and (max-width: 768px) {
  #menuButton {
      position: fixed;
      top: 0px;
      left: auto;
      right: 0px;
      display: block;
      margin-top: 0px;
      width: 100px;
      height:80px;
      z-index: 1000;
  }

}
#menuButton.view{
  -webkit-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
     -moz-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
      -ms-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
       -o-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
          transform: scale3d(1,1,1) translate3d(0%,0px,0px);
  
}
#menuButton .hamburger{
  position: absolute;
  top: 0;
  right: 0px;
  outline: none;
}
#menuButton .hamburger-box {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 20px;
}
.hamburger-inner,.hamburger-inner:after, .hamburger-inner:before {
    position: absolute;
    width: 32px;
    height: 1px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    border-radius: 0px;
    background-color: #FFF;
}
#menuButton.page .hamburger-inner,#menuButton.page  .hamburger-inner:after,#menuButton.page  .hamburger-inner:before {
    background-color: #FFF;
}

@media only screen and (max-width: 768px) {
  #menuButton {
    -webkit-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
       -moz-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
        -ms-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
         -o-transform: scale3d(1,1,1) translate3d(0%,0px,0px);
            transform: scale3d(1,1,1) translate3d(0%,0px,0px);
  }
  #menuButton.page{
  }
  #menuButton .hamburger-inner,#menuButton  .hamburger-inner:after,#menuButton  .hamburger-inner:before {
      background-color: #FFF;
  }
  #menuButton.page .hamburger-inner,#menuButton.page  .hamburger-inner:after,#menuButton.page  .hamburger-inner:before {
      background-color: #FFF;
  }
}


/*----------------------------------------------------
  #side
--------------------------------------------------- */
#side{
  position: fixed;
  top: 290px;
  left: 0px;
  border-top:1px #000 solid;
  border-bottom:1px #000 solid;
  border-right:1px #000 solid;
  height:330px;
  width: 200px;
  text-align: right;
  z-index: 100;
  background: #FFF;
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
         -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
}

@media only screen and (max-width: 768px) {
  #side{
  display: none;
  }
}
#side.move{
  position: fixed;
  top: 50%;
  margin-top: -165px;
}
#side h1{
  width: 140px;
  padding: 20px 0px 30px;
  margin: 0 20px 0 auto;
}
#side a h1 span{
  display: block;
  width: 140px;
  height: 50px;
  background: url(../../img/memory/logo.png) no-repeat right;
  background-size: contain;
  text-indent: -9999px;
}
#side .menu{
  padding: 0px 20px 10px;
}
#side .menu li{
  font-size: 13px;
  margin-bottom: 10px;
}
#side a{
  color: #000;
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
         -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
}
#side a:hover,
#side a.active{
  color: #aacc03;
}
#side .copyright{
  padding-right: 20px;
  font-size: 10px;
  line-height: 120%;
  color: #ccc;
  font-family: 'Montserrat', sans-serif;
}

/*----------------------------------------------------
  #contents
--------------------------------------------------- */
#contents{
  position: relative;
}
/*----------------------------------------------------
  #footer
--------------------------------------------------- */
#footer{
}
#footer .area{
  padding: 20px;
  font-size: 10px;
}
#footer .link li{
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 768px) {

  #footer .image img{
    width: 100%;
    height: auto;
  }
  #footer .area{
    padding: 50px 0;
  }
  #footer .link li{
    width: 60%;
    margin: 0 auto;
    margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 0.2em;
  }
  #footer .link li img{
    width: 100%;
  }

}
#pagetop{
  width: 80px;
  height: 36px;
  display: block;
  position: fixed;
  z-index: 100;
  bottom: 15px;
  right: 35px;
  background: url(../../img/memory/pagetop.png) no-repeat top;
  text-align: center;
  font-size: 10px;
  color: #FFF;
  line-height: 1;
  padding-top: 30px;
  opacity: 0;
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
         -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
}
#pagetop:hover{
  -webkit-transform: scale3d(1,1,1) translate3d(0px,-10px,0px);
     -moz-transform: scale3d(1,1,1) translate3d(0px,-10px,0px);
      -ms-transform: scale3d(1,1,1) translate3d(0px,-10px,0px);
       -o-transform: scale3d(1,1,1) translate3d(0px,-10px,0px);
          transform: scale3d(1,1,1) translate3d(0px,-10px,0px);

}
#pagetop.view{
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  #pagetop{
    width: 30px;
    height: 26px;
    display: none;
    position: fixed;
    z-index: 100;
    bottom: 10px;
    right: 10px;
    background: url(../../img/memory/pagetop.png) no-repeat top;
    background-size: contain;
    text-align: center;
    font-size: 10px;
    color: #FFF;
    line-height: 1;
    padding-top: 20px;
    opacity: 0;
  }
}

/*----------------------------------------------------
  #modal
----------------------------------------------------*/
#modalbg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 101;
  display: none;
}
#modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 102;
  opacity: 0;
  display: none;
  background: #000;
}
#modal.view{
  opacity: 1;
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
         -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
}
#loadArea{
  position: absolute;
  top: 50%;
  left:50%;
  width: 600px;
  margin-left: -300px;
}

#loadArea h2{
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.2em;
  color: #FFF;

}
#loadArea p{
  color: #FFF;
  line-height: 200%;
  font-size: 12px;
  margin-bottom: 10px;
}
#loadArea a{
  text-decoration: underline;
}

#modal a.close{
  background: url(../../img/memory/btn_close.png) no-repeat;
  width: 46px;
  height: 46px;
  display: block;
  position: absolute;
  top: 75px;
  right: 60px;
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
         -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
}
#modal a.close:hover{
  opacity:0.7;
}

@media only screen and (max-width: 768px) {

  #loadArea{
    position: absolute;
    top: 50%;
    left:15%;
    width: 70%;
    margin-left: 0px;
    margin: 0 auto;
  }
  #loadArea p{
    color: #FFF;
    line-height: 180%;
    font-size: 10px;
    margin-bottom: 10px;
  }

  #modal a.close{
    background: url(../../img/memory/btn_close.png) no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 75px;
    right: 40px;
      -webkit-transition: all 0.5s ease;
         -moz-transition: all 0.5s ease;
          -ms-transition: all 0.5s ease;
           -o-transition: all 0.5s ease;
              transition: all 0.5s ease;
  }
}