@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif, 'メイリオ';
     /*font-family: 'Quicksand', sans-serif;*/
}

.showcase
{
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: #fff;
  transition: 0.5s;
}

.showcase.active {
    position: absolute;
    right: 480px;
}

.showcase header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 100px;
    z-index: 1000;
}

.showcase h1 {
    text-transform: uppercase;
    cursor: pointer;
}

.logo {font-size: 33px;

}

.toggle {
    background: url("./images/menu.png");
    width: 60px;
    height: 60px;
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}


.toggle.active {
    background: url("./images/close.png");
    width: 60px;
    height: 60px;
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.text {
    font-size: 20px;
    font-weight: bold;
}

/* ここは最初は消しといて、最後に右のバーに設定する */
.menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.menu ul {
    list-style: none;
    font-size: 18px;
}

.menu ul li a {
    text-decoration: none;
    color: #111;
    transition: 0.3s;
}

.menu ul li a:hover {
    color: #03a9f4;
}


.showcase video {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#03a9f4;
    mix-blend-mode: overlay;
}

.monochrome {
    position: relative;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      filter: grayscale(90%);
  }

.text {
    position: relative;
    z-index: 10;
}

.text h2 {
    font-size: 1.5em;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    line-height: 1em;
}

.text h3 {
    font-size: 1.3em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1em;
}

.text p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px 0;
    color: #fff;
}

.text a {
    display: inline-block;
    background: #fff;
    text-decoration: none;
    color: #111;
    padding: 10px 30px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.1s;
}

.text a:hover  {
    letter-spacing: 6px;
}

.social {
    position: absolute;
    bottom: 20px;
    display: flex;
}

.social li {
    list-style: none;
}

.social li a{
    display: inline-block;
    margin-right: 20px;
    transition: 0.2s;
}

.social li a:hover{
    transform: translateY(-15px);
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media (max-width: 768px) {
 /*   .showcase, .showcase header {
        padding: 40px;
    }
    .text h1 {
        font-size: 3rem;
    }
    .text h2 {
        font-size: 1rem;
    }

    .text h3 {
        font-size: 1rem;
    }
 */

.showcase
{
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: #fff;
  transition: 0.5s;
}

.showcase.active {
    position: absolute;
    right: 480px;
}

.showcase header {
    position: absolute;
    top: 0px;
    left: -80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 100px;
    z-index: 1000;
}

.showcase h1 {
    text-transform: uppercase;
    cursor: pointer;
}

.logo {
    font-size: 16px;/*33px;*/
    left: 10px;
}

.toggle {
    background: url("./images/menu.png");
    width: 60px;
    height: 60px;
    background-size: 30px;
    background-position: 0% 0%; /*center;*/
    background-repeat: no-repeat;
    cursor: pointer;
    /*left: 200px;*/
}


.toggle.active {
    background: url("./images/close.png");
    width: 60px;
    height: 60px;
    background-size: 30px;
    background-position: center;/*0% 100%; center;*/
    background-repeat: no-repeat;
    cursor: pointer;
}

.text{font-size: 20px;

}

/* ここは最初は消しといて、最後に右のバーに設定する */
.menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.menu ul {
    list-style: none;
    font-size: 14px;
    
}

.menu ul li a {
    text-decoration: none;
    color: #111;
    transition: 0.3s;
}

.menu ul li a:hover {
    color: #03a9f4;
}


.showcase video {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;/*100%*/
    height: 100%;
    background-color:#03a9f4;
    mix-blend-mode: overlay;
}

.monochrome {
    position: relative;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      filter: grayscale(90%);
  }

.text {
    position: relative;
    top: 10px;
    z-index: 10;
}

.text h2 {
    font-size: 1.5em;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    line-height: 1em;
}

.text h3 {
    font-size: 1.3em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1em;
}

.text p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px 0;
    color: #fff;
}

.text a {
    display: inline-block;
    background: #fff;
    text-decoration: none;
    color: #111;
    padding: 10px 30px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.1s;
}

.text a:hover  {
    letter-spacing: 6px;
}

.social {
    position: absolute;
    bottom: 20px;
    display: flex;
}

.social li {
    list-style: none;
}

.social li a{
    display: inline-block;
    margin-right: 20px;
    transition: 0.2s;
}

.social li a:hover{
    transform: translateY(-15px);
}


}
