@charset "UTF-8";
/* CSS Document */

/*-------------------------------------------
common
-------------------------------------------*/
html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  font-family: "m-plus-1p", sans-serif;
  font-size: 1.6rem;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

li {
  display: inline-block;
}

.sp {
  display: inline-block;
}

.wrapper {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

/*-------------------------------------------
fv
-------------------------------------------*/
.aaa{ 
	position: relative;
}
.mocom-logo {
	position: absolute;
    top: 0.5%;
    right: 3%;
    display: block;
    z-index: 1;
    width: 30%;
}

.fv-video {
  width: 100vw;
  max-height: calc(768px * 1.6);
}

/*-------------------------------------------
sec1
-------------------------------------------*/
.sec1-wrapper {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  background-image: url(../img/sec1-bg.png);
  background-size: cover;
}

.sec1-contents {
  padding: 8% 7%;
}

.btn01 {
  margin-bottom: 7%;
}

.sec1-title {
  margin-bottom: 7%;
	width: 100%;
}

.sec1-img1 {
  margin-bottom: 7%;
	width: 100%;
}

.sec1-img2 {
  margin-bottom: 7%;
	width: 100%;
}

.sec1-img3 {
  margin-bottom: 7%;
	width: 100%;
}

/*-------------------------------------------
sec2
-------------------------------------------*/
.sec2-wrapper {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  background-image: url(../img/sec2-bg.png);
  background-size: cover;
}

.sec2-contents {
  padding: 0.5% 7%;
}

.sec2-titlepart{
	position: relative;
	width:100%;
	top:35px;
	left:0;
	z-index: 1;
}

.sec2-video-matome{
	margin-bottom: 2%;
	
}
.sec2-video {
  width: 50%;
  border-radius: 8%;
}

.sec2-video-column {
  display: flex;
  justify-content: center;
  gap: 5%;
  margin-bottom:6%;
}

/*-------------------------------------------
sec3
-------------------------------------------*/
.sec3-wrapper {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  background-image: url(../img/sec3-bg.png);
  background-size: cover;
}

.sec3-contents {
  padding: 8% 7%;
}



/*-------------------------------------------
footer
-------------------------------------------*/
.footer-wrapper {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #3c3c3c;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 100;
  font-size: 1.3rem;
}

.footer-contents {
  padding: 2% 5%;
}


/*-------------------------------------------


ここからresponive


-------------------------------------------*/

/*-------------------------------------------
footer
-------------------------------------------*/
@media screen and (max-width: 768px) {
  .footer-wrapper {
    font-size: 2.2vw;
  }
}

/*-------------------------------------------


ここからアニメーション


-------------------------------------------*/
.syasei {
  animation-name: syasei; /* アニメーション名の指定 */
  animation-delay: 0s; /* アニメーションの開始時間指定 */
  animation-duration: 3s; /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out;
  /* アニメーションの動き（徐々に早く徐々に遅く）*/
  animation-iteration-count: infinite; /* アニメーションをループさせる */
}


.button {
  animation: syasei 2s ease-out infinite;
}

@keyframes syasei {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  60% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

.scr-target {
  /* アニメーション開始から終了までの所要時間 */
  animation-duration: 0.7s;
  /* アニメーションが開始するまでの遅延時間 */
  animation-delay: 0.3s;
  /* アニメーションのループ回数 - infiniteで無限ループ */
  animation-iteration-count: 1;
  /* キーフレームアニメーションで指定したプロパティをアニメーション開始前、終了後に適用するかどうか */
  animation-fill-mode: both;
}
.scr-target[class*="fadeIn"],
.scr-target[class*="zoom"] {
  opacity: 0;
}

/*==================================================
ボンッ
===================================*/
/*上からフェードイン*/
.anime__fadeInTop.is-active {
  animation-name: fadeInTop;
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*左からフェードイン*/
.anime__fadeInLeft.is-active {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}