@charset "UTF-8";

.event-body {
  background-color: #d9e0fc;
}

/* 以下KV */

.KV {
  background-image: url(../img/lp_back01_pc.jpg);
  animation: bgscroll 15s linear infinite;
  width: 100%;
  height: 300px;
  margin: 0 auto 0;
  position: relative;
}

@-webkit-keyframes bgscroll {
  0% {
    background-position: 0 0;
  }
  100% {
		background-position: 0 -600px;
	}
}

@keyframes bgscroll {
  0% {
    background-position: 0 0;
  }
  100% {
		background-position: 0 -600px;
	}
}

.catch-copy {
  font-size: 36px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

/* KV終わり */

.Subscribe-btn {
  position: sticky;
  bottom: 40px;
}

.Subscribe-btn a {
  color: #fff;
  background: rgb(204,0,255);
  background: linear-gradient(90deg, rgba(204,0,255,1) 0%, rgba(60,29,255,1) 50%, rgba(48,218,255,1) 100%);  width: 100%;
  width: 90%;
  max-width: 400px;
  padding: 20px 16px;
  font-size: 16px;
  line-height: 0;
  margin: 0 auto;
  box-shadow: 0px 0px 15px -5px #8787a8;
  border-radius: 20px;
  border: solid 2px #fff;
}

.title-list-page-btn a {
  color: #fff;
  background: rgb(212, 0, 240);
  background: linear-gradient(90deg, rgb(255, 117, 241) 0%, rgb(212, 0, 240) 100%);  width: 100%;
  width: 100%;
  max-width: 400px;
  padding: 20px 16px;
  font-size: 16px;
  line-height: 0;
  margin: 12px auto 0;
  box-shadow: 0px 0px 15px -5px #8787a8;
  border-radius: 20px;
  border: solid 2px #fff;
}

main {
  height: 100%;
  box-sizing: inherit;
  font-family: 'Montserrat', sans-serif;
  flex: 1; /* footerを下部に固定 */
  padding-bottom: 40px;
}

.merit-main-text {
  background-color: #0F0F12;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  padding: 14px;
}

.merit-block {
  padding: 16px 0 50px;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}

.text-medium {
  font-size: 18px;
}

.text-small {
  padding-top: 12px;
  font-size: 12px;
  font-weight: 300;
  text-align: left;
}

.accordion .text-small {
  font-size: 12px;
  font-weight: 300;
  text-align: left;
}

.gazo-yohaku {
  margin: 12px auto 0;
  box-shadow: 0px 0px 15px -5px #8787a8;
  border-radius: 20px;
  padding: 30px;
  background-color: #fff;
}

.gazo-yohaku img {
  width: 50%;
  max-width: 200px;
  height: auto;
}

.gazo-habaippai {
  margin: 12px auto 0;
  box-shadow: 0px 0px 15px -5px #8787a8;
  border-radius: 20px;
}

.gazo-habaippai img {
  border-radius: 20px;
}

.faq {
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  color: #0F0F12;
  margin: 32px auto 24px;
  font-weight: 700;
}

/* 以下アコーディオン */
.accordion {
  margin: 30px auto;
  width: 90%;
  max-width: 600px;
}
  
.toggle {
  display: none;
}

.option {
  position: relative;
  margin-bottom: 24px;
}

.title,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.title {
  padding: 14px 32px 14px 14px;
  margin-bottom: 4px;
  display: block;
  color: #fff;
  background-color: #28267E;
  text-align: left;
  font-weight: 700;
}

.title::after,
.title::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: #fff;
  transition: all 0.3s;
}

.title::after {
  transform: rotate(90deg);
}

.content {
  max-height: 0;
  overflow: hidden;
  background-color: #28267E;
}

.content p {
  margin: 0;
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  font-weight: 300;
}

.toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
}

.toggle:checked + .title::before {
  transform: rotate(45deg) !important;
}

.toggle:checked + .title::after {
  transform: rotate(135deg) !important;
}

/* アコーディオン終わり */



@media screen and (max-width: 690px) {

  .KV {
    background-image: url(../img/lp_back01_pc.jpg);
    background-size: 97%;
  }

  .catch-copy {
    font-size: 30px;
    width: 96%;
  }

}