@media screen and (max-width:600px){
  .smartphone {display: initial;}
  .pc {display: none;}
  
  * {
    margin: 0;
    padding: 0;
  }

  .header {
    position: relative;
  }
  .video-box {
    width: 100%;
    z-index: 5;
    position: absolute;
    bottom: 12%;
  }
   
  .video-box iframe {
    width: 100%;
  }
  
  img {
    width: 100%;
  }
  @keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
  }
  .form {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 5; 
    opacity: 0;
    animation: fadeIn .75s ease 2s 1 forwards;
  }
}

@media screen and (min-width:601px){
  .smartphone {display: none;}
  .pc {display: initial;}

  @import url('https://fonts.googleapis.com/css?family=M+PLUS+1p');
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background-color: rgb(253, 255, 118);
  }
  .CMClogo-wide {
    width: 25%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .go-btn {
    width: 25%;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
  }
  .staff-room-top {
    width: 100%;
  }
  .staff-room {
    width: 97%;
    margin: 30px auto;
  }
  .staff-room > h2 {
    font-size: 2.1vw;
    margin-bottom: 20px;
    margin-left: 3vw;
  }

  .title {
    width: 30vw;
    margin-left: 1vw;
  }

  .special ,.facilitator{
    display: flex;
    justify-content: space-around;
    width: 97%;
    margin: 0px auto 60px;
  }

  .facilitator img {
    width: 50%;
  }
  .morgens, .garba, .maeno {
    padding: 0 2vw;
  }

  .special-img {
    width: 17vw;
    display: block;
    border-radius: 5%;
  }

  .special h2 {
    font-size: 1.5vw;
  }

  .special p {
    width: 25vw;
    font-size: 0.85em;
    font-family:  "M PLUS Rounded 1c";
    /* background-image: url(imgfile/paper.png); */
  }


  .okada ,.kohe,.mitui{
    width: 25vw;
  }

  .okada img ,.mitui img ,.kohe img {
    width: 25vw;
    display: block;
    margin: 0 auto;
  }

  .naraberu {
    position: relative;
  }
  .talk-h2, .talk-title-img {
    position: absolute;
    top: 0px;
    right: 2vw;
  }
  .talk-h2,.coordinator-h2 {
    font-size: 1.6vw;
  }


  .coordinator {
    display: flex;
    justify-content: space-around;
    width: 97%;
    margin: 0px auto 60px;
  }
  .haruka, .wataru {
    width: 25vw;
  }
  .line {
    border-left: orange solid 2px;
  }
  .coordinator img ,.maiko img{
    width: 25vw;
    display: block;
    margin: 0 auto;
  }
  .maiko {
    width: 25vw;
    
  }
  .maiko img {
    width: 25vw;
    display: block;
    margin: 0 auto;
  }
  .maiko p {
    width: 25vw;
    margin: 0 auto;
  } 
  .copyright { 
    text-align: center;
    margin: 60px auto 40px;
  }
}




/* ---------------メニューバー----------------- */
.menus a {
  text-decoration: none;
  color: white;
}

/* position:fixed が二つあったときは上に書いてあるほうが優先される？ */
/* aタグ,liタグにborder:3px,solid,white;が適応されないんだけどなんで？ */

.menus {
  width: 250px;
  height: 100%;
  padding-top: 165px;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(250px);
  transition: all .5s;
}
.menus.open {
  transform: translateZ(0);
}
.menus li {
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

ul {
  list-style: none;
}

.menu-trigger {
  display: inline-block;
  width: 36px;
  height: 28px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 100;
/*   transform: translateX(0);
  transition: transform .5s;
 */}

 .menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  box-shadow:  1px 2px 0 rgba(0, 0, 0, .5);
  transition: all .5s;
}


.menu-trigger span:nth-of-type(1) { top: 0; }
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}

.menu-trigger span:nth-of-type(2) { top: 12px; }
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger span:nth-of-type(3) { bottom: 0; }
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

.menu-trigger {
  transform: translateX(0);
  transition: all .5s;
}
.menu-trigger.active {
  transform: translateX(-250px);
}
.menu-trigger.active span {
  background-color: #fff;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}
/* ---------------メニューバー終わり----------------- */