@charset "UTF-8";

/*-------------------------------------------
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;
}

/*-------------------------------------------
header
-------------------------------------------*/
.header-column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1% 3%;
}

.header-text-column {
  margin-right: 8%;
}


.logo {
  width: 80%;
  margin-right: 3%;
}

.header-text {
  width: 65%;
}

/*-------------------------------------------
fv
-------------------------------------------*/
.fv-video {
  width: 100vw;
  height: 160vw;
  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% 5%;
}

.sec1-title {
  width: 80%;
  margin-bottom: 5%;
}

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

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

.sec1-img3 {
  margin-bottom: 5%;
}
/*-------------------------------------------
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: 8% 5%;
}

.sec2-video {
  width: 50%;
  border-radius: 8%;
}

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

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

.arrow {
  width: 10%;
}

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

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

.sec3-slick {
  padding-right: 1%;
}

.sec3-video {
  border-radius: 8%;
}

.sec3-text {
  position: absolute;
  top: 15%;
  left: 6%;
  z-index: 1;
  width: 90%;
}

.left-right01 {
  margin-bottom: 30%;
}

.left-right02 {
  margin-bottom: 5%;
}

.btn2 {
  margin-bottom: 0;
  padding: 0 5%;
}

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

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

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


ここからresponive


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

/*-------------------------------------------
sec3
-------------------------------------------*/
@media screen and (max-width: 768px) {
  .sec3-text {
    position: absolute;
    top: 17%;
    left: 6%;
    z-index: 1;
    width: 90%;
  }
}

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

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


ここからアニメーション


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

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

@keyframes dokidoki {
  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;
}

/* フェードイン */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.anime__fadeIn.is-active {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* フェードイン(上から) */
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.anime__fadeInDown.is-active {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* フェードイン(下から) */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.anime__fadeInUp.is-active {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* フェードイン(左から) */
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.anime__fadeInLeft.is-active {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/* フェードイン(右から) */
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.anime__fadeInRight.is-active {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/* ズームイン */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 1;
  }
}
.anime__zoomIn.is-active {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/* ズームアウト */
@-webkit-keyframes zoomOut {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.6, 1.6, 1.6);
    transform: scale3d(1.6, 1.6, 1.6);
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.6, 1.6, 1.6);
    transform: scale3d(1.6, 1.6, 1.6);
  }
  100% {
    opacity: 1;
  }
}
.anime__zoomOut.is-active {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

/*---------
slider
-------------*/
.autoplay-slider {
  display: flex;
  min-width: 100%;
  width: min-content;
}
.slider-left {
    animation: 30s linear infinite sliderAnimation;
}
.slider-right {
    animation: 30s linear infinite reverse sliderAnimation;
}

.slide {
  width: 30vw;
  max-width: 356px;
  height: (30vw * 0.6);
  max-height: 214px;
  margin: 7px;
  position: relative;
} 
@keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}