@charset "utf-8";

/* -----------------------------------------------------------
　common
----------------------------------------------------------- */

* {box-sizing:border-box;}
img {max-width:100%;}
.fwbold {font-weight:bold;}
.left {float:left;}
.right {float:right;}
.center {text-align:center;}
.clear {clear: both;}
.italic {font-style:italic;}
.clearfix::after {
	display: block;
	clear: both;
	content: "";
}
a {
  color:inherit;
  text-decoration:none;
}
img {
  vertical-align: top;
}
body {
  font-family: 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size:18px;
  font-weight: 500;
  line-height:1.6;
  color:#000;
  font-feature-settings: "palt";
}
.f_montserrat {
  font-family: "Montserrat", sans-serif;
}

@media screen and (min-width: 768px){ 
  .pc_cont {display:block!important;} 
  .sp_cont {display:none!important;} 
}

a:hover {
  text-decoration:underline;
  color:inherit;
}
hr.anc {
  font-size: 0!important;
  border:none!important;
  height:0!important;
  margin-top:0!important;
  padding-top:0!important;
}

/* -----------------------------------------------------------
  lp
----------------------------------------------------------- */

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.header-inner {
  position: relative;
  max-width: auto;
  height: 80px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-header .logo {
  text-decoration: none;
  height: 80px;
}
.lp-header .logo a {
  display: block;
  height: 100%;
}
.lp-header .logo a img {
  height: 100%;
}

.hamburger {
  width: 50px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff6bf2 0%, #d100b8 100%);
  transition: 0.3s ease;
}

/* OPEN */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(14px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-nav {
  position: absolute;
  top: 80px;
  right: 50px;
  width: 260px;
  padding: 40px 25px;
  background: #fff;
  box-shadow: 0 0 12px rgba(215, 2, 164, 0.5);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.5s;
}
.header-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header-nav a {
  position: relative;
  color: #d702a4;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}
.header-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d702a4;
  transition: .3s;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s ease;
}
.header-nav a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.kv {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
  overflow: hidden;
  margin: 80px 0 0;
}
.kv .kv_img {
  width: 100%;
  opacity: 0;
  filter: blur(20px);
  animation: kvBlurFade 2s ease forwards;
}
.kv h1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  filter: blur(12px);
  animation: kvTitleBlur 1.8s ease 1s forwards;
}
@keyframes kvBlurFade {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.03);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes kvTitleBlur {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

main {
  position: relative;
  z-index: 2;
}

.box {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 0 50px;
}
.box.small {
  max-width: 1100px;
}

.page_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg.png) no-repeat center top / cover;
  z-index: -1;
}

.entry-btn {
  width: 340px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(
    90deg,
    #ef5de7 0%,
    #d500a9 50%,
    #ef5de7 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  transition:
    transform 0.2s ease,
    background-position 0.4s ease,
    opacity 0.2s ease;
}
.entry-btn span {
  color: #fff;
}
.entry-btn::after {
  content: ">";  
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
/* HOVER */
.entry-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(3px);
  background-position: 0 0;
}
.entry-btn:hover span,
.entry-btn:hover::after {
  color: #fff;
}
main .h2 {
  margin: 0 0 70px;
}
main .h2 .en {
  display: block;
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: 0 0 12px #d702a4;
}
main .h2 .jp {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 10px 0 0;
}
main .h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid #000;
  margin: 70px 0 35px;
  padding-bottom: 15px;
}
main .h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #d702a4;
  margin: 20px 0 15px;
}
main .h4:first-child {
  margin-top: 0;
}

.sec_about {
  position: relative;
  padding: 110px 0;
  z-index: 0;
  overflow-x: clip;
}
.sec_about .img_before,
.sec_about .img_after {
  position: absolute;
  z-index: -1;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(40px) scale(1.03);
  transition: 1s;
}
.sec_about .img_before.active,
.sec_about .img_after.active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
.sec_about .img_before {
  top: -60px;
  left: calc(50% - 800px);
  width: 375px;
}
.sec_about .img_after {
  bottom: -200px;
  right: calc(50% - 800px);
  width: 375px;
}
.sec_about .lead {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: #d702a4;
  margin: 0 0 40px;
}
.sec_about .about_text {
  display: block;
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 20px;
}
.center .entry-btn {
  margin: auto;
}

/* イラストレーター */
.sec_illustrator {
  padding: 110px 0;
  background: url(../img/bg_red.png) no-repeat center top / cover;
}
main .columns_cont {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4%;
  margin: 0 0 60px;
}
main .columns_cont:last-child {
  margin-bottom: 0;
}


main .columns_cont.scrollin > .item {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(40px) scale(1.03);
  transition: 1s;
}
main .columns_cont.scrollin > .item:nth-of-type(2) {
  transition-delay: 0.3s;
}
main .columns_cont.scrollin.active > .item {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}





main .columns_cont > .item {
  width: 48%;
}
main .columns_cont.even > .item:nth-of-type(1) {
  order: 2;
}
.sec_illustrator .name_cont {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 0 30px;
}
.sec_illustrator .name_cont > img {
  width: 120px;
  margin-right: 15px;
}
.sec_illustrator .name_cont > h3 {
  width: 100%;
  position: relative;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.sec_illustrator .name_cont > h3 a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: auto;
  transition: 0.3s;
}
.sec_illustrator .name_cont > h3 a:hover {
  opacity: 0.7;
}
.sec_illustrator .profile {
  font-size: 20px;
  color: #fff;
}
.sec_illustrator .profile a {
  text-decoration: underline;
  transition: 0.3s;
  color: #0065eb;
}
.sec_illustrator .profile a:hover {
  opacity: 0.7;
}

/* メガミノウタゲについて */
.sec_megami {
  padding: 110px 0;
}
.sec_megami .h2 .jp {
  color: #d702a4;
}
.sec_megami .lead {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.8;
  color: #d702a4;
  margin: 0 0 70px;
}
.playlist li.list {
  padding: 0 10px;
}
.playlist .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25% !important;
}
.playlist .youtube > iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  padding: 0;
  vertical-align: bottom;
  padding: 4px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 5px 2px;
}

.playlist .slick-next,
.playlist .slick-prev {
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translate(0, -50%);
  z-index: 1;
}
.playlist .slick-next {
  right: -45px;
}
.playlist .slick-prev {
  left: -45px;
}
.playlist .slick-next:before,
.playlist .slick-prev:before {
  opacity: 1;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/icon_arrow.png) no-repeat center center / contain;
  z-index: 1;
}
.playlist .slick-next:before {
  transform: rotate(180deg);
}
.playlist .slick-dots {
  bottom: -35px;
}
.playlist .slick-dots li button:before {
  content: '•';
  font-size: 14px;
  width: 20px;
  height: 20px;
  color: #d702a4;
}
.playlist .slick-dots li.slick-active button:before {
  color: #d702a4;
  opacity: 1;
}

/* 制作内容 */
.sec_details {
  padding: 110px 0;
  background: url(../img/bg_blue.png) no-repeat center top / cover;
}
.sec_details .h2 .en {
  text-shadow: 0 0 12px #0071ce;
}
.sec_details p {
  font-size: 20px;
}
.sec_details .columns_cont {
  gap: 2%;
  align-items: stretch;
}
.sec_details .columns_cont .white_cont {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  width: 49%;
}
.sec_details .columns_cont .white_cont p {
  font-size: 18px;
}

/* 募集要項 */
.sec_entry,
.sec_copyright,
.sec_qa {
  padding: 110px 0 0;
}
.sec_qa {
  padding: 110px 0;
}
.sec_entry .h2 .jp,
.sec_copyright .h2 .jp,
.sec_qa .h2 .jp {
  color: #d702a4;
}
main .table_common {
  margin: 0 0 35px;
}
main .table_common tr {}
main .table_common th {
  width: 230px;
  background: #d702a4;
  color: #fff;
  line-height: 1.3;
  font-size: 26px;
  font-weight: 700;
  padding: 15px;
  border-top: 1px solid #fff;
}
main .table_common tr:first-of-type th {
  border-top: none;
}
main .table_common td {
  padding: 15px;
  border-top: 1px solid #d702a4;
}
main .table_common tr:last-of-type td {
  border-bottom: 1px solid #d702a4;
}
main .table_common .check > li {
  font-size: 20px;
  font-weight: 500;
  padding-left: 1.5em;
  text-indent: -1.5em;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
main .table_common .check > li::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../img/icon_check.png) no-repeat center center / contain;
  vertical-align: middle;
  margin-right: 0.3em;
}
main .table_common .check > li:last-child {
  margin-bottom: 0;
}
main .table_common .check > li span {
  font-size: 0.8em;
}
main .list_common > li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
main .list_common > li::before {
  content: "●";
  margin-right: 0.2em;
}

/* Q&A */
.faq_cont dl {
  padding: 20px 25px;
  margin: 0 0 30px;
  font-size: 18px;
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(215, 2, 164, 0.5);
}
.faq_cont dl:last-child {
  margin-bottom: 0;
}
.faq_cont dl > dt,
.faq_cont dl > dd {
  position: relative;
  z-index: 1;
  color: #d702a4;
  padding-left: 45px;
  padding-right: 50px;
}
.faq_cont dl > dt {
  position: relative;
  z-index: 0;
  font-size: 22px;
  font-weight: 700;
}
.faq_cont dl > dt .toggle-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  margin: auto;
}
.faq_cont dl > dt .toggle-icon::before,
.faq_cont dl > dt .toggle-icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 4px;
  background: #d702a4;
  margin: auto;
  transition: .5s;
}
.faq_cont dl > dt .toggle-icon::after {
  transform: rotate(90deg);
}
.faq_cont dl.active > dt .toggle-icon::before {
  transform: rotate(180deg);
}
.faq_cont dl.active > dt .toggle-icon::after {
  transform: rotate(360deg);
}
.faq_cont dl > dd {
  display: none;
  padding-top: 20px;
}
.faq_cont dl > dt::before,
.faq_cont dl > dd::before {
  content: "Q.";
  position: absolute;
  top: -0.1em;
  left: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: #d702a4;
}
.faq_cont dl > dd::before {
  content: "A.";
  color: #d702a4;
  top: 0.5em;
}

footer {
  padding: 50px 0;
  background: url(../img/bg_red.png) no-repeat center center / cover;
}
footer .footer_columns {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
footer .footer_columns p {
  font-size: 18px;
  font-weight: 700;
}
footer .footer_columns img {
  width: 228px;
}
/* PAGE TOP */
.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 88px;
  height: 88px;
  margin: 0;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
  opacity: 0;
  box-shadow: 0 0 12px #d702a4;
}
.pagetop.fadein {
  opacity: 1;
}
.pagetop:hover {
  opacity: 0.85;
}
.pagetop span {
  position: relative;
  color: #d702a4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 25px;
}
.pagetop span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 20px solid #d702a4;
  transform: translateX(-50%);
}



/* -----------------------------------------------------------
  SP
----------------------------------------------------------- */
@media screen and (max-width: 767px){ 

  body {
    -webkit-text-size-adjust: 100%;
    font-size:16px;
  }
  .sp_cont {display:block!important;} 
  .pc_cont {display:none!important;} 

  .header-inner {
    height: 65px;
    padding: 0 16px;
  }

  .header-nav {
    top: 72px;
    right: 16px;
    left: 16px;
    width: auto;
  }
  .lp-header .logo {
    height: 65px;
    position: relative;
    left: -15px;
  }

  .hamburger {
    width: 40px;
    gap: 6px;
  }
  .hamburger span {
    height: 2px;
  }

  /* OPEN */
  .hamburger.is-open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .header-nav {
    top: 75px;
    right: 0;
    left: 0;
    width: 90%;
    padding: 40px 25px;
    margin: auto;
  }
  .header-nav ul {
    gap: 16px;
  }
  .header-nav a {
    font-size: 16px;
  }

  .kv {
    margin: 65px 0 0;
  }

  main {
    position: relative;
    z-index: 2;
  }

  .box {
    width: 100%;
    padding: 0 5%;
  }

  .entry-btn {
    width: 300px;
  }
  main .h2 {
    margin: 0 0 40px;
  }
  main .h2 .en {
    font-size: 40px;
    letter-spacing: 0;
    text-shadow: 0 0 10px #d702a4;
  }
  main .h2 .jp {
    font-size: 18px;
    margin: 8px 0 0;
  }
  main .h3 {
    font-size: 22px;
    margin: 40px 0 20px;
    padding-bottom: 10px;
  }
  main .h4 {
    font-size: 20px;
    margin: 10px 0;
  }

  .sec_about {
    padding: 70px 0;
  }
  .sec_about .img_before {
    top: -60px;
    left: -20px;
    width: 150px;
  }
  .sec_about .img_after {
    bottom: -200px;
    right: -20px;
    width: 130px;
  }
  .sec_about .lead {
    font-size: 22px;
    margin: 0 0 20px;
  }
  .sec_about .about_text {
    margin: 0 auto 20px;
    font-size: 18px;
  }

  /* イラストレーター */
  .sec_illustrator {
    padding: 70px 0;
    background: url(../img/bg_red.png) no-repeat center top / cover;
  }
  main .columns_cont {
    display: block;
    margin: 0 0 50px;
  }

  main .columns_cont > .item {
    width: 100%;
  }
  main .columns_cont > .item:nth-of-type(1) {
    margin-bottom: 15px;
  }
  .sec_illustrator .name_cont {
    margin: 0 0 10px;
  }
  .sec_illustrator .name_cont > img {
    width: 100px;
    margin-right: 10px;
  }
  .sec_illustrator .name_cont > h3 {
    font-size: 22px;
    padding-bottom: 8px;
  }
  .sec_illustrator .name_cont > h3 a {
    width: 30px;
    height: 30px;
  }
  .sec_illustrator .profile {
    font-size: 16px;
  }

  /* メガミノウタゲについて */
  .sec_megami {
    padding: 70px 0;
  }
  .sec_megami .lead {
    font-size: 22px;
    line-height: 1.5;
    margin: 0 0 50px;
  }
  .playlist li.list {
    padding: 0 10px;
  }
  .playlist .slick-next,
  .playlist .slick-prev {
    width: 30px;
    height: 30px;
  }
  .playlist .slick-next {
    right: -10px;
  }
  .playlist .slick-prev {
    left: -10px;
  }

  /* 制作内容 */
  .sec_details {
    padding: 70px 0;
  }
  .sec_details p {
    font-size: 16px;
  }
  .sec_details .columns_cont {
  }
  .sec_details .columns_cont .white_cont {
    padding: 20px 15px;
    width: 100%;
  }
  .sec_details .columns_cont .white_cont p {
    font-size: 16px;
  }

  /* 募集要項 */
  .sec_entry,
  .sec_copyright,
  .sec_qa {
    padding: 70px 0 0;
  }
  .sec_qa {
    padding: 70px 0;
  }
  main .table_common {
    margin: 0 0 10px;
  }
  main .table_common tr {
  }
  main .table_common th,
  main .table_common td {
    display: block;
  }
  main .table_common th {
    width: 100%;
    font-size: 20px;
    padding: 8px 5%;
    border-top: none;
  }
  main .table_common td {
    padding: 10px 0 20px;
  }
  main .table_common tr:last-of-type td {
    border-bottom: none;
  }
  main .table_common .check > li {
    font-size: 16px;
  }
  main .table_common .check > li::before {
    width: 18px;
    height: 18px;
    margin-right: 0.3em;
  }
  main .table_common .check > li:last-child {
    margin-bottom: 0;
  }

  /* Q&A */
  .faq_cont dl {
    padding: 15px 15px;
    margin: 0 0 15px;
    font-size: 14px;
  }
  .faq_cont dl > dt,
  .faq_cont dl > dd {
    padding-left: 35px;
    padding-right: 30px;
  }
  .faq_cont dl > dt {
    font-size: 16px;
  }
  .faq_cont dl > dt .toggle-icon {
    width: 20px;
    height: 20px;
  }
  .faq_cont dl > dt .toggle-icon::before,
  .faq_cont dl > dt .toggle-icon::after {
    width: 20px;
    height: 3px;
  }
  .faq_cont dl > dd {
    padding-top: 10px;
  }
  .faq_cont dl > dt::before,
  .faq_cont dl > dd::before {
    font-size: 25px;
  }
  .faq_cont dl > dd::before {
  }

  footer {
    padding: 30px 0;
  }
  footer .footer_columns p {
    font-size: 14px;
  }
  footer .footer_columns img {
    width: 160px;
  }

  /* PAGE TOP */
  .pagetop {
    right: 10px;
    bottom: 10px;
    width: 60px;
    height: 60px;
    box-shadow: 0 0 6px #d702a4;
  }
  .pagetop span {
    font-size: 8px;
    padding-top: 18px;
  }
  .pagetop span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 13px solid #d702a4;
    transform: translateX(-50%);
  }


}