/* フォントファイルを指定する */
/* thin-100 */
@font-face {
  font-family: "LINESeedJP";
  src: url("fonts/LINESeedJP_OTF_Th.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}

/* Regular-400 */
@font-face {
  font-family: "LINESeedJP";
  src: url("fonts/LINESeedJP_OTF_Rg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

/* Bold-700 */
@font-face {
  font-family: "LINESeedJP";
  src: url("fonts/LINESeedJP_OTF_Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

/* ExtraBold-900 */
@font-face {
  font-family: "LINESeedJP";
  src: url("fonts/LINESeedJP_OTF_Eb.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

html,
body {
  height: 100%;
  font-size: 16px;
}

/* 基本的なスタイル */
body {
  margin: 0;
  padding: 0;
  font-family: "LINESeedJP", YuGothic, "游ゴシック", "Yu Gothic", Verdana,
    "メイリオ", Meiryo, sans-serif;
  background-color: black;
  color: white;
}

p {
  margin: 0;
}

video {
  max-width: initial !important;
}

h1 {
  font-weight: 900;
}

/* キャッチコピー */
#catchphrase {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}

/* カウントダウンのスタイル */
#countdown {
  font-size: 3rem;
  animation: fadeIn 2s ease-in-out;
  margin-bottom: 30px;
}

/* ボタン */
.button {
  background-color: #ffc64a;
  color: white;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  transition: background-color 0.3s ease;
}

/* サービスの特徴のアイコン */
.icon-text {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 10px 0;
}

/* アニメーション */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ステップのスタイル */
h3.title.is-4 {
  font-weight: 700;
  color: #ffc64a;
}

/* ユーザーの声 */
blockquote {
  font-style: italic;
  margin: 20px;
}

/* モバイル対応 */
@media (max-width: 768px) {
  #catchphrase {
    font-size: 2.5rem;
  }

  #subtitle {
    font-size: 1.5rem;
  }

  #countdown {
    font-size: 2rem;
  }

  .columns {
    flex-direction: column;
  }
}

.visual {
  position: relative;
  width: 100%;
  height: 100vh;
}

.movie {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
}

.movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

.hero {
}

.hero__contents {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.hero__container {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.hero__title {
  margin-top: 40px;
  margin-bottom: 0px;
  color: white;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.5;
}

.hero__desc {
  margin-top: 20px;
  line-height: 1.5;
  font-size: 20px;
  color: white;
}

.hero__lead {
  margin-top: 8px;
  font-size: 20px;
}

.hero__remaining {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.hero__count {
  margin-top: 32px;
  color: #ffc64a;
  font-size: 40px;
  font-weight: 600;
}

strong {
  color: #ffc64a;
  font-weight: 600;
}

.btn {
  position: relative;
  margin-top: 48px;
}

.btn_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

#btn_animation .btn {
  display: block;
  position: relative;
  width: 320px;
  height: 78px;
  line-height: 78px;
  font-size: 24px;
  border-radius: 39px;
  text-decoration: none;
  background-color: rgb(252, 220, 151);
  color: #fbfbfb;
  text-align: center;
  transition: 0.2s;
}

#btn_animation .btn:before,
#btn_animation .btn:after {
  content: "";
  position: absolute;
  z-index: -10;
  width: 320px;
  height: 78px;
  top: 0;
  left: 0;
  border-radius: 39px;
  background-color: rgb(252, 220, 151);
  transform: translate3d(0, 0, 0);
}

#btn_animation .btn:before {
  animation: anime 1s ease-out infinite;
}

#btn_animation .btn:after {
  animation: anime 1s ease-out 1s infinite;
}

@keyframes anime {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  to {
    transform: scale(1.2, 1.4);
    opacity: 0;
  }
}

.container {
  padding: 80px 0;
  text-align: center;
}

.flex {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.grid {
  display: grid;
  flex-direction: row;
  gap: 20px;
}

.blinking {
  -webkit-animation: blink 1s ease-in-out infinite alternate;
  -moz-animation: blink 1s ease-in-out infinite alternate;
  animation: blink 1s ease-in-out infinite alternate;
  color: #ffc64a;
  font-weight: 600;
  font-size: 56px;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.primary {
  color: #ffc64a;
}

@media screen and (max-width: 768px) {
  .hero-video {
    display: block !important;
  }
}
