@charset "utf-8";img {max-width:100%;height:auto;}
/* aタグのリセットCSS（不要な場合、セレクタごと削除してください） */
a {
  color: inherit;
  text-decoration: none;
}

/* buttonタグのリセットCSS（不要な場合、セレクタごと削除してください） */
button {
  padding: 0;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
  background-color: #000;
  border: none;
}

/* ボタンのスタイル */
.buttonOutlineGradient {
  position: relative;
  display: block;
  width: 100%;
  max-width: 640px;
  height: 128px;
  padding: 2px;
  font-family: sans-serif;
  font-size: 3rem;
  text-align: center;
  overflow-wrap: anywhere;
  background: linear-gradient(135deg, #6fa24a, #15a1cc);
  border-radius: 64px; /* (buttonの高さ / 2) の値 */
  margin:  0 auto;
}

.buttonOutlineGradient::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(135deg, #6fa24a, #15a1cc);
  border-radius: 64px; /* (buttonの高さ / 2) の値 */
  opacity: 0;
  filter: blur(8px);
}

.buttonOutlineGradient_item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #000;
  border-radius: 64px; /* (buttonの高さ / 2) の値 */
}

@media (any-hover: hover) {
  .buttonOutlineGradient::before {
    transition: opacity 0.2s;
  }

  .buttonOutlineGradient:hover::before {
    opacity: 1;
  }
}

.dark {
    background-color: #000;
}
.movie {
    background-color: #fff;
    margin:  0 auto;
}
.movie iframe {
    margin:  0 auto;
}

@media only screen and (min-width: 751px){
	.pairing-pc {
           max-width: 800px;
           margin:  0 auto;
	}
}
@media only screen and (max-width: 750px){
.movie iframe {
    max-width: 360px;
}
.buttonOutlineGradient {
    width: 90%;
    height:50%
}
}