@charset "utf-8";

* {
  box-sizing: border-box;
}


p {
  margin-bottom: 30px;
}

.video-wrap {
  background-color: #000;
  margin-bottom: 20px;
}

video {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: auto;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 3% auto 5%;
  text-align: center;
  font-size: 20px;
  line-height: 2.0;
  font-weight: bold;
}



.logo {
  width: 80%;
  max-width: 500px;
}

.anniversary-set {
  margin-bottom: 80px !important;
}

.anniversary-set img {
  width: 90%;
  max-width: 800px;
}

.set-image {
  margin-bottom: 0;
}


.set-text {
  font-size: 46px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5;
}

.under {
  background: linear-gradient(transparent 50%, #ddb500c7 50%);
}

.button-wrap {
  width: 70%;
  margin: 0 auto;
  max-width: 400px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  margin: 0 auto;
  padding: .9em 2em;
  border: none;
  border-radius: 5px;
  background-color: #000000;
  color: #fff;
  font-weight: bold;
}

.button:hover {
  opacity: 0.7;
}

.button::before {
  width: 1em;
  height: 1em;
  margin-right: 10px;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M7.2%2019.2c-1.3%200-2.4%201.1-2.4%202.4%200%201.3%201.1%202.4%202.4%202.4s2.4-1.1%202.4-2.4c0-1.3-1.1-2.4-2.4-2.4zM0%200v2.4h2.4l4.3%209.1-1.6%202.9c-.2.3-.3.7-.3%201.2%200%201.3%201.1%202.4%202.4%202.4h14.4v-2.4H7.7c-.2%200-.3-.1-.3-.3v-.1l1.1-2h8.9c.9%200%201.7-.5%202.1-1.2l4.3-7.8c.2-.2.2-.4.2-.6%200-.7-.5-1.2-1.2-1.2H5.1L3.9%200H0zm19.2%2019.2c-1.3%200-2.4%201.1-2.4%202.4%200%201.3%201.1%202.4%202.4%202.4%201.3%200%202.4-1.1%202.4-2.4%200-1.3-1.1-2.4-2.4-2.4z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center;
  content: '';
}

.item-img {
  text-align: center;
  background-color: #000;
}

.item-img img {
  width: 100%;
  max-width: 1400px;
  text-align: center;
}


/*
右から左へ無限ループ
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/*
IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.loop {
  display: -ms-grid;
  overflow: hidden;
}

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

.loop__wrap {
  display: flex;
  overflow: hidden;
  margin-bottom: 100px;
}

.loop__list {
  display: flex;
  list-style: none;
}

.loop__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.loop__item {
  width: calc(100vw / 4);
}

.loop__item>img {
  width: 100%;
}

/*アウスオーバーで停止*/
/*.anniversary-set:hover .loop__list--left {
  animation-play-state: paused;
}*/


@media screen and (min-width: 768px) {
  br.sp_only {
    display: none;
  }

}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    margin: 3% auto;
    font-size: 14px;
    line-height: 2.0;
  }

  /*ループ画像表示枚数*/
  .loop__item {
    width: calc(100vw / 2);
  }

  .set-text {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
  }
}


/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}
