@charset "utf";

/*---基礎情報---*/

a {
  display: block;
  position: relative;
  text-decoration: none;
}

ul {
  display: block;
}

.wrapper {
  text-align: center;
}

/*------↓ スマホサイトサイズ ↓------*/

.pc {
  display: none !important;
}

.menu {
  width: 25%;
  text-align: center;
  margin: auto 0;
}

/*---main部分---*/
/* 
img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  width: 100%;
} */

.main_img {
  width: 100%;
  height: 100%;
  /* margin-top: 49px; */
}

.switch-img_sp {
  opacity: 0;
  transition: opacity 2s ease-in-out;
  position: absolute;
  width: 100%;
  margin-top: 80px;
}

.switch-img_sp.active {
  opacity: 1;
}






/*------↓ パソコンサイズ ↓------*/


@media screen and (min-width: 1024px) {

  body {
    width: 100%;
    }

  .sp {
    display: none !important;
  }

  .pc {
    display: block !important;
  }

  img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
  }

  .main_img {
    width: 100%;
    padding-top: 10px;
    margin: 0 auto;
  }

  .switchImg-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }

  .switch-img_pc {
    width: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    position: absolute;
    margin-top: 80px;
  }
  
  .switch-img_pc.active {
    opacity: 1;
  }
  
}