@charset "UTF-8";
/* CSS Document */

/*Common 
===============================================================*/

body{
  position: relative;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Osaka, Sans-Serif; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -moz-font-feature-settings: 'liga', 'kern'; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 15px; font-weight: 400;color: #200f4c;width: 100%;
  background: #1f1957 url('https://changemakeru18.ctpfs.jp/image/tbb_template/changemaker/body_bg.png') top / 140% repeat-y;
}
/*
body::before {
  content:'';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url('https://changemakeru18.ctpfs.jp/image/tbb_template/changemaker/body_bg2.jpg') no-repeat;
  background-position: top;
  background-size: 100%;
}*/

img{
  width: 100%;
  max-width: 100%;
  display: block;
}
.flex{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.flex_clm{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
a.cvr{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#container{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}
#container > *{
  width: 100%;
}


/*humButton
====================*/
#head-hum{
  position: fixed;
  width: 88px;
  height: 80px;
  overflow: hidden;
  z-index: 100;
  cursor: pointer;
  top: 0;
  left: 0;
}
#head-hum button{
  width: 300%;
  height: 12px;
  background: #200f4d;
  position: absolute;
  left: -50%;
  top: 40px;
  bottom: 0;
  transform:translateX(-50%) rotate(-45deg);
  -webkit-transition: transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  max-width: none;
}
#head-hum button::before
,#head-hum button::after{
  content: "";
  width: 100%;
  height: 12px;
  position: absolute;
  background: #200f4d;
  left: 0;
}
#head-hum button::before{
  top: 24px;
}
#head-hum button::after{
  top: 48px;
}
.hum_text{
  position: absolute;
  width: 2.15em;
  right: .25em;
  bottom: 12px;
  -webkit-transition: transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
}
#head-hum:not(.is-open):hover button{
  left: calc(50% + 10px);
  top: 10px;
  transform:translateX(-50%)rotate(0);
  width: calc(100% - 10px);
}
#head-hum.is-open button{
  top: 50%;
  transform:translateY(-50%)rotate(0);
  width: 85%;
  background: none;
}
#head-hum.is-open button::before{
  transform: rotate(45deg);
  top: 0;
  left: calc(50% + 20px);
  background: #fff;
}
#head-hum.is-open button::after{
  transform: rotate(-45deg);
  top: 0;
  left: calc(50% + 20px);
  background: #fff;
}
#head-hum:hover p.hum_text
,#head-hum.is-open p.hum_text{
  transform: translateY(100%) rotate(45deg);
}

#l-nav{
  width: 860px;
  max-width: 100%;
  height: 100vh;
  position: fixed;
  left: -100%;
  top: 0;
  transform: translateX(-100%);
  z-index: 99;
  -webkit-transition: transform .3s,left .3s;
  -o-transition: transform .3s,left .3s;
  transition: transform .3s,left .3s;
  background: #200f4d;
  color: #fff;
  
}
#l-nav.is-open{
  left: 0;
  transform: translateX(0);
  display: block;
}

.l-nav__inner{
  height: 100vh;
  padding: 45px 60px 150px;
}
.l-nav_logo{
  width: 490px;
  max-width: 100%;
  margin: 0 auto;
}
.l-nav__box{
  margin-top: 60px;
  justify-content: space-between;
  
}
.l-nav__box .svg .st0
,.l-nav__mypage .svg .st0{
  fill:#fff;
}
.l-nav__box > *{
  width: calc((100% - 40px)/2)
}
ul.l-nav__link li a
,.l-nav__apply span{
  font-size: 1.8em;
  display: block;
}
ul.l-nav__link li a{
  padding: 30px 0;
}
ul.l-nav__link li a::after
,.l-nav__apply::after{
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  display: block;
}
.l-nav__apply::after{
  right: 1em;
}
ul.l-nav__link li a span{
  display: block;
}
ul.l-nav__link li{
  border-top: 1px solid;
  padding: 0 15px;
}
ul.l-nav__link li:last-child{
  border-bottom: 1px solid;
}
.l-nav__apply{
  border: 1px solid #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.l-nav__apply span{
  width: 5em;
}
.l-nav__reg
,.l-nav__mypage{
  margin-top: 40px;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}
.l-nav__reg .btn-wrap{
  width: calc(75% - 20px);
  justify-content: space-between;
}
.l-nav__reg .btn-wrap a.sq-pnk{
  width: calc((100% - 15px)/2);
  justify-content: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.l-nav__reg .sns-btn-wrap{
  width: 25%;
  justify-content:space-around;
}
.l-nav__mypage .btn-wrap{
  width: 60%;
  justify-content: space-between;
}
.l-nav__mypage .btn-wrap a.sq-pnk{
  width: 100%;
  justify-content: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.l-nav__mypage .sns-btn-wrap{
  width: calc(40% - 20px);
}
/*header/nav  
===============================================================*/

header{
  /*border-bottom: 4px solid #200f4d;*/
  overflow: hidden;
  background: #fff;
  z-index: 2;
}
header::after{
  content: "";
  width: 100%;
  height: 4px;
  background: #200f4d;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  z-index: 1;
  
}
.header_inner{
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding-right: 20px;
}
.header_inner nav{
  margin-top: auto;
}
.head-nav li + li{
  margin-left: 60px;
}
.head-nav li{
  /*padding-left: 8px;
  padding-right: 8px;*/
  transition: .3s;
}
.head-nav li a{
  display: block;
  font-size: .9em;
  padding-bottom: 30px;
  position: unset;
}
.head-nav li a::before{
  content: "";
  width: calc(100% + 16px);
  height: 14px;
  transform: translateY(14px) translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transition: transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
}
.head-nav li a:hover::before{
  transform: translateY(0) translateX(-50%);
}
.head-nav li.nav-top a
,.foot-page-nav a.nav-top
,ul.l-nav__link li.nav-top a span{
  width: 2.25em;
}
.head-nav li.nav-top a::before{
  background: #200f4d;
}
.head-nav li.nav-apply a
,.foot-page-nav a.nav-apply
,.l-nav__apply a span{
  width: 5.25em;
}
.head-nav li.nav-apply a::before{
  background: #c274f8;
}
.head-nav li.nav-news a
,.foot-page-nav a.nav-news
,ul.l-nav__link li.nav-news a span{
  width: 3em;
}
.head-nav li.nav-news a::before{
  background: #ff63bd;
}
.head-nav li.nav-topic a
,.foot-page-nav a.nav-topic
,ul.l-nav__link li.nav-topic a span{
  width: 3.25em;
}
.head-nav li.nav-topic a::before{
  background: #ffde00;
}
.head-nav li.nav-youtube a
,.foot-page-nav a.nav-youtube
,ul.l-nav__link li.nav-youtube a span{
  width: 5.25em;
}
.head-nav li.nav-youtube a::before{
  background: #ff0000;
}
.head-nav li.nav-contact a
,.foot-page-nav a.nav-contact
,ul.l-nav__link li.nav-contact a span{
  width: 6em;
}
.head-nav li.nav-contact a::before{
  background: #e5e5e5;
}
.head-nav li.nav-mypage a
,.foot-page-nav a.nav-mypage
,ul.l-nav__link li.nav-mypage a span{
  width: 5.5em;
}
.head-nav li.nav-mypage a::before{
  background: #200f4d;
}

.header_inner .logo{
  width: 180px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}

/*main
===============================================================*/

.inner{
  width: 100%;
  max-width: 1220px;
  padding: 0 20px;
  margin: 0 auto;
}

.fnt-mochi{
  font-family: 'Mochiy Pop One', sans-serif;
  font-weight: 700;
  font-display: swap;
}
/*Key
=====================================*/
#key{
  width: 100%;
  overflow: hidden;
}
#key.home{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
#key.home::before{
  content: "";
  display: block;
  padding-top: 47.36%;
}

#key.home .key-inner{
  width: 100%;
  max-width: 1440px;
  padding:0 60px;
}
#key.home .key-inner p.key-title{
  /*width: 730px;*/
  width: calc(50% + 50px);
  
  transform: translateX(-50px);
}
#key.home .key-inner p.key-text{
  width: 50%;
  margin-top: 30px;
  /*width: 650px;*/
}

/*key slide glid*/
/*.key-slide-area{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 32.430% 1fr;
}
.key-slide_top{
  grid-row: 1 / 2;
  grid-column: 2 / 1;
}
.key-slide_btm{
  grid-row: 2 / 2;
  grid-column: 1 / 2;
  overflow: hidden;
}
.key-slide_main{
  grid-row:1/3;
  grid-column: 2 / 2;
}
.slide-cat > *{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}*/

.key-slide-area{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.key-side{
  width: calc(100% / 3);
  background: #000;
  height: 100%;
}
.key-side > *{
  display: block;
  width: 100%;
  height: 50%;
}
.key-main{
  width: calc(100% - (100% / 3));
  height: 100%;
}
.key-slide_main{
  width: 100%;
  height: 100%;
}

.slide-cat::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.key-slide_top::before{
  background-image: url("/image/tbb_template/animenova/key-slide_a01.png");
}
.key-slide_btm::before{
  background-image: url("/image/tbb_template/animenova/key-slide_b01.png");
}
.key-slide_main::before{
  background-image: url("/image/tbb_template/animenova/key-slide_main.png");
}

.key-btm{
  background: url("/image/tbb_template/animenova/wall_dot.png") #1f0f4f repeat top center/57px;
}
.key-btm p.btm-text{
  color: #fff;
  font-weight: 900;
  font-size: 1.5em;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  line-height: 1.6;
}

/*news-slider*/
.news-slider-wrap{
  width: 480px;
  /*height: 100%;*/
  max-width: 50%;
  position: absolute;
  top: -2em;
  /*transform: translateY(-50%);*/
  right: 20px;
  z-index: 1;
}
.slider-item{
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: flex-start;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  border: 4px solid #1e0f4f;
  opacity: 0;
}
.slider-item-inner{
  padding: 15px 15px 10px;
  justify-content: space-between;
}
.slider-item .thumb{
  width: 40%;
}
.slider-item .slide-cmnt{
  width: calc(60% - 15px);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.slider-item .slide-cmnt p.in-title{
  font-size: 16px;
  line-height: 1.4;
}
#news-slider > *:nth-child(1) p.in-title{
  color: #165dd6;
}
#news-slider > *:nth-child(2) p.in-title{
  color: #df01b4;
}
#news-slider > *:nth-child(3) p.in-title{
  color: #ff8e00;
}
.slider-item .slide-cmnt p.in-text{
  font-size: .9em;
  font-weight: 700;
  padding: 15px 0;
  line-height: 1.4;
}
.slider-item .slide-cmnt p.date{
  margin-top: auto;
  font-size: .7em;
  font-weight: 400;
  margin-left: auto;
}
/*Content
=====================================*/
#content{
}
.title-wrap{}
.title-wrap h2{
  font-size: 7em;
  transform: translateY(-.25em);
}
/*button*/

.btn-wrap{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.btn-wrap a.arw{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  padding: 1em;
  width: 437px;
  max-width: 100%;
  text-align: center;
  font-size: 1.2em;
  background: #fff;
  border: 4px solid #1e0f4f;
  border-radius: 40px;
}
.btn-wrap a.arw::after{
  content: "";
  width: 2em;
  height: 100%;
  background: url("/image/tbb_template/animenova/icn_arrow.svg") no-repeat right center/100%;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: transform .3s;
  -o-transition: transform .3s;
  transition: transform .3;
}

.btn-wrap a.arw:hover::after{
  transform: translateY(-50%) translateX(2em);
}
.btn-wrap.more{
  justify-content: flex-end;
}
.btn-wrap.more a{
  width: 200px;
  max-width: 100%;
  background: #fff;
  border: 4px solid #1e0f4f;
  padding: 12px 18px;
  font-weight: 900;
}
.btn-wrap.more a::after{
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #200f4c #200f4c transparent transparent;
  position: absolute;
  right: .75em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: right .3s;
  -o-transition: right .3s;
  transition: right .3s;
}
.btn-wrap.more a:hover::after{
  right: .5em;
}

.btn-wrap a.sq-pnk{
  display: block;
  background: #df01b4;
  color: #fff;
  font-size: 1.8em;
  border: 1px solid #fff;
  padding: 20px;
}
.btn-wrap a.sq-pnk::after{
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    display: block;
}
.btn-wrap a.sq-pnk.reg-btn span{
  display: block;
  width: 4em;
  max-width: 100%;
}
.btn-wrap a.sq-pnk.mypage-btn span{
  display: block;
  width: 5em;
  max-width: 100%;
}
.sns-btn-wrap > *{
  width: 73px;
  max-width: calc((100% - 32px)/3);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  border-radius: 50%;
}
.sns-btn-wrap > a span{
  display: block;
  width: 80%
}
/*end / btn*/


.bg-fixed{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
/*INDEX Apply
========================================*/
.sec-apply-blc .bg-fixed{
  background-image: url("/image/tbb_template/animenova/wall_p01.png");
}

.sec-apply-blc{
  padding: 95px 0 110px;
}
.sec-apply-box .apply-thumb{
  width: 46%;
}
.sec-apply-box .apply-cmnt{
  padding: 30px 70px;
  width: 54%;
}
.sec-apply-box .apply-cmnt h2{
  font-size: 1.824em;
  width: 16em;
  max-width: 100%;
}
.sec-apply-box .apply-cmnt p.in-text{
  font-weight: 900;
  line-height: 1.8;
  margin-top: 50px;
  padding-bottom: 30px;
}
.sec-apply-box .apply-cmnt .btn-wrap{
  margin-top: auto;
  justify-content: center;
}
.sec-apply-box .apply-cmnt .btn-wrap span{
  width: 7em;
}

/*INDEX News
========================================*/
.sec-news-blc .bg-fixed{
  background-image: url("/image/tbb_template/animenova/wall_p02.png");
}
.sec-news-blc{
  
  padding-bottom: 70px;
}
.sec-news-blc .sec-title span{
  width: 3em;
}
.sec-news-box {
  padding-top: 65px; 
}
.news-acv-list{
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.news-acv-list article{
  width: calc((100% - 40px)/2);
}
.news-acv-list article::before{
  content: "";
  width: calc(100% - 30px);
  height: 80%;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #200f4c;
}
.news-acv-list article + article:nth-child(n+3){
  margin-top: 50px;
}

.news-acv-list article .news-thumb{
  width: calc(100% - 30px);
  border: 4px solid #1e0f4f;
  overflow: hidden;
}
.news-acv-list article .news-thumb::before{
  content: "";
  display: block;
  padding-top: 53.38%;
}
.news-acv-list article .news-thumb span{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  border: 12px solid #fff;
}
.news-acv-list article .news-thumb span img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
}
.news-acv-list article:hover .news-thumb span img{
  transform: scale(1.1);
}
.news-acv-list article .news-cmnt{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  padding: 20px 4em 20px 50px;
  color: #fff;
  font-weight: 900;
}
.news-acv-list article .news-cmnt h3{
  line-height: 1.5;
}
.news-acv-list article .news-cmnt .date{
  font-size: .7em;
  margin-top: 10px;
}
.news-acv-list article .news-cmnt::after{
  content: "";
  width: 2.75em;
  height: 2em;
  background:url("/image/tbb_template/animenova/icn_w_arrow.svg") no-repeat top center/100%;
  position: absolute;
  top: 25px;
  right: 15px;
  display: block;
  -webkit-transition: transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
}
.news-acv-list article:hover .news-cmnt::after{
  transform: translateX(35px);
}
.sec-news-box .btn-wrap{
  margin-top: 40px;
}

/*INDEX Topic
========================================*/
.sec-topic-blc .bg-fixed{
  background-image: url("/image/tbb_template/animenova/wall_p03.png");
}
.sec-topic-blc{
  padding-bottom: 120px;
  /*background: #ffd360;*/
}
.sec-topic-blc .sec-title span{
  width: 4em;
}
.sec-topic-blc .btn-wrap{
  margin-top: 40px;
}
/*slider*/
.sec-topic-slider{
  width: calc(100% - 30px);
  margin-left: auto;
  overflow: hidden;
  margin-top: 65px;
}
.sec-topic-slider .swiper-slide{ 
  height: auto;
}
.topic-slide-inner{
  height: 100%;
  padding: 12px 12px 20px
}
article.topic{
  background: #fff;
  border: 4px solid #1e0f4f;
}
article.topic::after{
  content: "";
  width: 3em;
  height: 2em;
  background: url("/image/tbb_template/animenova/icn_arrow.svg") no-repeat right bottom/100%;
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: block;
  -webkit-transition: transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
}
article.topic:hover::after{
  transform: translateX(2em);
}
article.topic h3{
  padding: 1em 0;
  font-weight: 900;
  line-height: 1.5;
}
article.topic .date{
  font-size: .7em;
  font-weight: 700;
  margin-top: auto;
}
.swiper-btn-right {
    position: absolute;
    top: 0;
    left: 90%;
    width: 300%;
    height: 100%;
    z-index: 80;
    cursor: pointer;
  outline: none;
}
.swiper-btn-left {
    position: absolute;
    top: 0;
    right: 90%;
    width: 300%;
    height: 100%;
    z-index: 80;
    cursor: pointer;
  outline: none;
}
/*slide cursor*/
.cursor {
  background: rgba(255,255,255,1);
  width: 4.5em;
  height: 4.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #200f4c;
  border: 4px solid #200f4c;
  font-weight: 900;
  position: absolute;
  z-index: 10;
  box-shadow: 0 5px 10rem 0 rgb(12 2 0 / 15%);
  cursor: pointer;
  margin: 1rem;
  right: 0;
  transform: scale(0);
  transition: transform .4s cubic-bezier(.19,1,.22,1);
  pointer-events: none;
}
.cursor_text_prev
,.cursor_text_next {
  font-size: .85em;
  display: none;
}
.show_cursor_left .cursor{
  transform:scale(1)
}
.show_cursor_left .cursor_text_prev{
  display:block
}
.show_cursor_left .topic-slider{
  transform:translateX(.5rem)
}
.show_cursor_right .cursor{
  transform:scale(1)
}
.show_cursor_right .cursor_text_next{
  display:block
}
.show_cursor_right .topic-slider{
  transform:translateX(-.5rem)
}

/*footer
==================================*/

footer{
  margin-top: auto;
  background: #000;
  padding-top: 70px;
  padding-bottom: 25px;
}
.foot-inner{
  justify-content: space-between;
  color: #fff;
}
.foot-logo{
  width: 240px;
  max-width: 100%;
}

.foot-page-nav{
  justify-content: flex-end;
}
.foot-page-nav a{
  display: block;
  font-size: .9em;
}
.foot-page-nav .svg .st0{
  fill:#fff;
}
.foot-page-nav a + a{
  margin-left: 3em;
}
.foot-other-nav{
  border-bottom: 1px solid #fff;
  margin-top: 35px;
  padding-bottom: 40px;
  justify-content: flex-end;
}
.foot-other-nav a{
  font-size: .6em;
  display: block;
}
.foot-other-nav a + a{
  margin-left: 3em;
}
.foot-inner p.copy{
  font-size: .6em;
  font-weight: 400;
  text-align: right;
  margin-top: 30px;
}


/*UNDER CONTENTS
=======================================================================*/
.under-contents main{
  padding-bottom: 150px;
}

.content-header{
  padding-top: 140px;
}
.content-header.full{
  padding: 75px 0 150px;
}
.content-header.full .content-header_inner{
  text-align: center;
}
.content-header.full .content-header_inner h2{
  font-size: 1.8em;
  font-weight: 900;
  line-height: 1.5;
}

.content-header .js-head_wall{
  background-image: url("/image/tbb_template/animenova/wall_dot.png");
  background-repeat: repeat;
  background-position: center;
  background-size: 57px;
  width: 100%;
  height: 70%;
  position: absolute;
  top: 0;
  left: 0;
}
.content-header.full .js-head_wall{
  height: 100%;
}
.content-header h2{
  font-size: 7em;
  max-width: 100%;
}
.page-wall{
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/image/tbb_template/animenova/under-wall01.png");
  z-index: -2;
}

.content-header + #content{
  margin-top: 65px;
}

/*ARCHIVE
========================================================*/
.pager{
  justify-content: center;
  -ms-align-items: flex-end;
  align-items: flex-end;
  margin-top: 120px;
}
.pager a{
  cursor: pointer;
  color: #200f4c;
  border: 2px solid #200f4c;
  width: 45px;
  height: 45px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-weight: 700;
}
.pager a + a{
  margin-left: -2px;
}
.pager a.active{
  width: 60px;
  height: 60px;
  background: #200f4c;
  color: #fff;
  font-size: 1.5em;
  
}
.pager p{
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 700;
}
.pager a.next
,.pager a.prev{
  border: none;
  margin-left: 0;
}
.pager a.next::before
,.pager a.prev::before{
  content: "";
  width: 10px;
  height: 10px;
  border: 3px solid;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 2px;
  
}
.pager a.next::before{
  transform: translate(-50%,-50%)rotate(45deg);
  border-color: #200f4c #200f4c transparent transparent;
}
.pager a.prev::before{
  border-color: #200f4c transparent transparent #200f4c;
  transform: translate(-50%,-50%)rotate(-45deg);
}

/*news / topic / spmovie
=======================================*/

/*news*/
.page-news .head-nav li.nav-news a::before{
  transform: translateY(0) translateX(-50%);
  z-index: 2;
  border: 4px solid;
  border-color: #200f4d #200f4d transparent #200f4d;
  bottom: -4px;
}
.page-news .content-header .js-head_wall{
  background-color: #ff62bc;
}

.page-news .content-header h2{
  width: 3.5em;
}
.page-news-blc .news-acv-list article .news-cmnt::after{
  filter: drop-shadow(1px 2px 0 rgba(32,25,76,1));
}
/*topic*/
.page-topic .head-nav li.nav-topic a::before{
  transform: translateY(0) translateX(-50%);
  z-index: 2;
  border: 4px solid;
  border-color: #200f4d #200f4d transparent #200f4d;
  bottom: -4px;
}
.page-topic .content-header .js-head_wall{
  background-color: #ffde00;
  background-image: url("/image/tbb_template/animenova/wall_dot_y.png");
}
.page-topic .content-header h2{
  width: 5em;
}
.topic-acv-list{
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.topic-acv-list article.topic{
  width: calc((100% - 180px)/3);
  margin-left: calc(180px / 6);
  margin-right: calc(180px / 6);
}
.topic-acv-list article + article:nth-child(n + 4){
  margin-top: 40px;
}
/*spmovie*/
.page-spmovie .head-nav li.nav-youtube a::before{
  transform: translateY(0) translateX(-50%);
  z-index: 2;
  border: 4px solid;
  border-color: #200f4d #200f4d transparent #200f4d;
  bottom: -4px;
}
.page-spmovie .content-header .js-head_wall{
  background-color: #ff0000;
  background-image: url("/image/tbb_template/animenova/wall_dot_y.png");
}
.page-spmovie .content-header h2{
  width: 7em;
}
.spmovie-acv-list{
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.spmovie-acv-list article.movie{
  width: calc((100% - 100px)/3);
  margin-left: calc(100px / 6);
  margin-right: calc(100px / 6);
}
.spmovie-acv-list article + article:nth-child(n + 4){
  margin-top: 40px;
}
article.movie .movie-wrap{
  overflow: hidden;
  border: 4px solid #1e0f4f;
}

article.movie h3{
  font-weight: 900;
  line-height: 1.5;
}
article.movie .date{
  font-weight: 600;
  font-size: .7em;
  margin-top: 15px;
}

/*DETAIL
========================================================*/
.detail-post-header{
  justify-content: space-between;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.detail-post-header h3.post-title{
  font-size: 1.8em;
  font-weight: 900;
  line-height: 1.4;
}
.detail-post-header .date{
  font-size: .7em;
  font-weight: 600;
}
.page-back-btn{
  margin-top: 80px;
  justify-content: center;
}
.page-back-btn a{
  display: block;
  width: 180px;
  max-width: 100%;
  border: 4px solid #1e0f4f;
  font-size: 1.2em;
  text-align: center;
  padding: .7em;
  font-weight: 900;
}

/*news detail
===================*/
#content.detail-news-blc{
  margin-top: 140px;
}
.detail-news-blc.inner{
  max-width: 1190px;
}
.d-news_thumb{
  transform: translateY(-85px) translateX(-32px);
}
.detail-news-box{
  width: calc(100% - 32px);
  color: #fff;
  padding-bottom: 125px;
  margin-left: auto;
  background: #200f4c;
}

.detail-news-box figure{
  border: 4px solid #1e0f4f;
}
.detail-news-box figure img{
  display: block;
  border: 12px solid #fff;
}
.d-news_thumb + .news-detail-header{
  padding-top: 0;
  margin-top: -25px;
}
.news-detail-header{
  width: calc(100% - 70px);
  padding-top: 55px;
  padding-left: 70px;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}
.news-detail-body{
  margin-top: 45px;
  line-height: 1.8;
  font-weight: 900;
}
.news-detail-body > * + *{
  margin-top: 70px;
}
.news-detail-body p{
  padding-left: 70px;
  padding-right: 70px;
}
.news-detail-body figure{
  transform:translateX(-32px);
}
.d-topic_thumb{
  margin-top: 35px;
}
.d-topic_thumb figure{
  border: 4px solid #1e0f4f;
}
.d-topic_thumb figure img{
  display: block;
  border: 12px solid #fff;
}
/*topic*/
.detail-topic-blc{
  max-width: 1035px;
}
.topic-detail-body{
  margin-top: 45px;
  line-height: 1.8;
  font-weight: 900;
  padding-bottom: 60px;
  border-bottom: 1px solid #000;
}

/*UNDER PAGE
========================================================*/
.under-page main{
  padding-bottom: 150px;
}
.under_inner{
  max-width: 640px;
  padding: 0 20px;
  margin-left:auto;
  margin-right: auto;
}

.under-page .top-text{
  font-weight: 900;
  line-height: 1.5;
}
.under-page .top-text.cnt{
  text-align: center;
}
/*inquiry*/
.page-contact .head-nav li.nav-contact a::before{
  transform: translateY(0) translateX(-50%);
  z-index: 2;
  border: 4px solid;
  border-color: #200f4d #200f4d transparent #200f4d;
  bottom: -4px;
}
.page-contact .content-header .js-head_wall{
  background-image: url("/image/tbb_template/animenova/wall_dot_y.png");
  background-color: #e5e5e5;
}
.page-contact .content-header h2{
  width: 6em;
}

.page-contact-box{
  font-weight: 900;
}
* + .form-wrap{
  margin-top: 42px;
}
ul.form li + li{
  margin-top: 30px;
}
ul.form li > * + *{
  margin-top: 15px;
}
ul.form li .f-title p{
  font-size: 1.2em;
}
ul.form li .f-title p.must::after{
  content: "";
  width: .5em;
  height: .5em;
  background: url("/image/tbb_template/animenova/icn_ask.svg") no-repeat center/100%;
  position: absolute;
  top: .2em;
  right: -.75em;
}
ul.form + .attention-text{
  margin-top: 35px;
}
.attention-text{
  font-size: .7em;
}
.attention-text p{
  padding-left: 1em;
line-height: 2;
}
.attention-text p::before{
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/*form*/
input[type="text"]
,input[type="tel"]
,input[type="email"]
,input[type="password"]
,textarea{
  border: 3px solid #1e0f4f;
  width: 100%;
  border-radius: 20px;
  padding: 15px;
  background: #fbfbfb;
  font-weight: 700;
  font-size: 1em;
  font-family: 'Noto Sans JP',sans-serif;
}
::placeholder{
  color: #afafba;
  font-weight: 500;
  font-family: 'Noto Sans JP',sans-serif;
  /*font-size: .8em;*/
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fbfbfb inset;
}
.form-btn-wrap{
  margin-top: 45px;
  justify-content: center;
}
.submit-btn{
  width: 447px;
  max-width: 100%;
}

.submit-btn::before{
  content: "";
  width: 100%;
  height: 100%;
  background: #ffde00;
  border-radius: 20px;
  position: absolute;
  top: 6px;
  left: 6px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.submit-btn .input{
  z-index: 1;
  border: 3px solid;
  border-radius: 20px;
}
.submit-btn input{
  font-family: 'Noto Sans JP',sans-serif;
  padding: .8em 0;
  letter-spacing: .15em;
  width: 100%;
  font-size: 1.2em;
  font-weight: 900;
  color: #200f4c;
}
.submit-btn:hover::before{
  top: 0;
  left: 0;
}
.text_value{
  width: 100%;
}
textarea.text-br{
  width: 100%;
  height: 8em;
}
.text_value .placeholder{
  position: absolute;
  top: 15px;
  left: 15px;
  pointer-events: none;
  color: #afafba;
  font-family: 'Noto Sans JP';
  line-height: 1.4;
  /*font-size: .8em;*/
}

/*応募ページ
============================================*/
#content.clr-box-wrap.page-apply-blc{
  padding-left: 60px;
  padding-right: 60px;
}
.page-apply .content-header{
  padding-top: 20px;
}
.page-apply .head-nav li.nav-apply a::before
,.page-apply-form .head-nav li.nav-apply a::before{
  transform: translateY(0) translateX(-50%);
  z-index: 2;
  border: 4px solid;
  border-color: #200f4d #200f4d transparent #200f4d;
  bottom: -4px;
}
.page-apply .content-header .head_wall{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  display: block;
  background: url("/image/tbb_template/animenova/wall_dot.png") #c274f8 repeat center top 5px/57px;
}
.apply-header_slide{
  overflow: hidden;
  width: 100%;
}
.apply-header_slide::before{
  content: "";
  display: block;
  padding-top: 47.9%;
}
.page-apply-box{
  width: 100%;
}
.page-apply-box .top-logo{
  width: 620px;
  max-width: 100%;
  margin: 0 auto;
}
.apply-tite{
  font-weight: 900;
  font-size: 1.8em;
  text-align: center;
  margin-top: 30px;
  line-height: 1.4;
}

.page-apply-body{
  margin-top: 80px;
}
.page-apply-body .band-title{
  background: #200f4c;
  color: #fff;
}
.page-apply-body .band-title + *{
  margin-top: 50px;
}
.page-apply-body .band-title span{
  display: block;
  padding: .5em;
  font-weight: 900;
  font-size: 1.5em;
  text-align: center;
}
.page-apply-cat + .page-apply-cat{
  margin-top: 60px;
}
.page-apply-cat + .band-title{
  margin-top: 100px;
}
.page-apply-cat p.in-text{
  line-height: 1.6;
}
.page-apply-cat .in-title{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.page-apply-cat .in-title p.line{
  font-size: 1.2em;
  font-weight: 900;
  border-left: 4px solid #200f4c;
  padding: 8px 20px
}
.page-apply-cat .in-title * + *{
  padding-left: 24px;
}
.page-apply-cat .in-title + *{
  margin-top: 20px;
}
.page-apply-cat .line-list li{
  padding: 25px 30px;
  border-top: 1px solid #200f4c;
  line-height: 1.4;
}
.page-apply-cat .line-list li:last-child{
  border-bottom: 1px solid #200f4c;
}
.page-apply-cat .line-list li .title{
  width: 15em;
  padding-right: 1em;
  font-weight: 900;
}
.page-apply-cat .line-list li .data{
  width: calc(100% - 15em); 
}
.page-apply-cat .dot-list li{
  padding-left: 30px;
  line-height: 1.6;
}
.page-apply-cat .dot-list li p{
  padding-left: 1em;
}
.page-apply-cat .dot-list li p::before{
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}
.pdf-link a{
  text-decoration: underline;
}

.page-apply-cat * + .num-title{
  margin-top: 50px;
}
.page-apply-cat .num-title + *{
  margin-top: 30px;
}
.page-apply-cat .num-title p{
  border: 1px solid;
  font-weight: 900;
  padding: .5em 1em;
  width: 330px;
  max-width: 100%;
}
.page-apply-cat .dot-cat p::before{
  content: "・";
  position: absolute;
  left: -1em;
  top: 0;
  display: block;
}
.page-apply-cat .text-cat{
  transform: translateX(-1em);
}
.page-apply-cat .num-list{
  counter-reset: count 0;
}
.page-apply-cat .num-list li{
  padding-left: 1.125em;
  line-height: 1.6;
}
.page-apply-cat .num-list li + li{
  margin-top: 10px;
}
.page-apply-cat .num-list li::before{
  content: counter(count);
  counter-increment: count 1;
  position: absolute;
  left: 0;
  top:.45em;
  width: 1.125em;
  height: 1.125em;
  border: 1px solid;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  -ms-align-items: center;
  align-items: center;
  font-size: .8em;
  line-height: 1;
  font-family: sans-serif;
  font-weight: 600;
}
.page-apply-cat .num-list li p.att::before{
  content: "※";
  position: absolute;
  left: -1em;
  top: 0;
  display: block;
}
.apply-btn-wrap{
  margin-top: 70px;
  justify-content: space-between;
}
.apply-btn-wrap a{
  width: calc((100% - 70px)/3);
  background: #200f4c;
  color: #fff;
  font-weight: 900;
}
.apply-btn-wrap a span{
  display: block;
  padding: .8em 1em .8em .75em;
  line-height: 1.6;
}
.apply-btn-wrap a::after{
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  position: absolute;
  right: 0.75em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: right .3s;
  -o-transition: right .3s;
  transition: right .3s;
}
.apply-btn-wrap a:hover::after{
  right: .5em
}

/*apply-form*/
.page-apply-form .content-header .js-head_wall{
  background-color: #c274f8;
}

.page-apform-box{
  width: 710px;
  max-width: 100%;
}
.apply-form-wrap{
  width: 100%;
  margin-top: 85px;
}
.page-apform-box p.top-text{
  line-height: 2;
  padding: 0 1.5em;
}

.fileup-title{
  background: #555493;
}
.fileup-title p{
  font-weight: 900;
  color: #fff;
  font-size: 1.2em;
  padding: 18px 15px;
}
.account-form li.file-up{
  margin-top: 70px;
}
li.file-up .file-input{
  margin-top: 50px;
  padding-left: 40px;
  padding-right: 40px;
}
.file-input > * + *{
  margin-top: 25px;
}
/*file btn*/
.account-form .file-set{
  -ms-align-items: center;
  align-items: center;
}
.account-form .file-set input[type="file"]{
  display: none;
}
.account-form .file-set label{
  border: 3px solid #200f4c;
  border-radius: 10px;
  padding: .5em;
  background: #f1f3f4;
  font-weight: 700;
  cursor: pointer;
}
.account-form .file-set label + span{
  margin-left: 1em;
  font-weight: 500;
}

.apply-form-att{
  margin-top: 105px;
  text-align: center;
  line-height: 1.4;
}
#content.page-appform-blc.comp{
  padding-top: 160px;
}
.page-appform-blc.comp .btn-wrap{
  justify-content: center;
}
.page-appform-blc.comp .btn-wrap a{
  color: #fff;
  background: #200f4c;
}
.page-appform-blc.comp .squ-arw-btn >*::after{
  border-color: #fff #fff transparent transparent;
}
/*LOGIN　/ REGIST
============================================*/
#content.clr-box-wrap{
  /*margin-top: -200px;*/
  margin-top: -60px;
  padding-top: 110px;
  background: #fff;
  padding-bottom: 100px;
  border: 4px solid #1e0f4f;
  width: calc(100% - 40px);
  max-width: 1120px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
}
#content.clr-box-wrap.nvy{
  color: #fff;
  background: rgba(31, 25, 87, .9);
  margin-top: 50px;
  border: 1px solid #4d4783;
  border-radius: 7px;
  margin-bottom: 50px;
}
.page-login .content-header .js-head_wall{
  background-color: #c274f8;
}
.page-login .form-wrap
,.clr-box-wrap .form-wrap{
  width: 600px;
  max-width: 100%;
}
#content.clr-box-wrap.nvy input[type="text"]
,#content.clr-box-wrap.nvy input[type="tel"]
,#content.clr-box-wrap.nvy input[type="email"]
,#content.clr-box-wrap.nvy input[type="password"]
,#content.clr-box-wrap.nvy textarea{
  border-color: #fff;
}

.form-wrap p.error{
  font-size: .9em;
}
.form-wrap p.error + form{
  margin-top: 20px;
}
.pass-forget{
  justify-content: flex-end;
  font-size: .7em;
}
.pass-forget a{
  text-decoration: underline;
}
.regist-link{
  width: 65%;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .regist-link{
    width: 100%;
  }
}
.regist-link .line-subtitle{
  justify-content: center;
  font-weight: 900;
}
.regist-link .line-subtitle::before
,.regist-link .line-subtitle::after{
  content: "";
  width: calc((100% - 15em)/2);
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.regist-link .line-subtitle::before{
  left: 0;
}
.regist-link .line-subtitle::after{
  right: 0;
}
.regist-link .att-text{
  margin-top: 50px;
  line-height: 1.4;
}
.regist-link .squ-box-btn{
  margin-top: 50px;
  justify-content: center;
}
.account-form + .attention-text{
  margin-top: 30px;
  justify-content: center;
}
.account-form + .form-btn-wrap{
  margin-top: 80px;
}
/*PASSWORD
============================================*/
.page-password .content-header .js-head_wall {
    background-color: #c274f8;
}
.page-password-blc p.top-text{
  margin-bottom: 30px;
}
.page-password-blc .btn-wrap{
  justify-content: center;
}
/*MYPAGE
============================================*/
.page-mypage .head-nav li.nav-mypage a::before{
  transform: translateY(0) translateX(-50%);
  z-index: 2;
  border: 4px solid;
  border-color: #200f4d #200f4d transparent #200f4d;
  bottom: -4px;
}

.page-mypage{
  background: #1f1957;
}
.mypage-contents{
  padding-top: 85px;
}
.mypage-title-wrap{
  width: 640px;
  max-width: calc(100% - 20px);
  z-index: 1;
}
.mypage-title_inner{
  width: 100%;
  background: #1f0f4f;
  padding-top: 2em;
  padding-left: 4em;
  padding-right: 5em;
}
.mypage-title-wrap h2{
  color: #fff;
  font-weight: 900;
  font-size: 1.8em;
  padding-bottom: .5em;
  padding-left: .5em;
}
.mypage-title-wrap h2::before{
  content: "";
  width: 3px;
  height: 1.25em;
  background: #f1f3f4;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  -webkit-transition: transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transform: scale(1,0);
  transform-origin: bottom;
}
.mypage-title-wrap.line h2::before{
  transform: scale(1,1);
}
.mypage-top-box{
  margin-top: -30px;
  -ms-align-items: center;
  align-items: center;
}
.mypage-top-box .thumb{
  width: 57.152%
}
.mypage-top-box .mypage-data{
  width: 42.848%;
  padding-left: 90px;
  -ms-align-items: flex-start;
  align-items: flex-start;
  color: #fff;
}
.mypage-top-box .mypage-data p.member-num{
  font-size: 14px;
  margin-left: auto;
  padding-right: 30px;
}
.mypage-page-link{
  width: 100%;
  margin-top: 20px;
}
.mypage-page-link li{
  border-top: 4px solid #fff;
  padding-right: 30px;
}
.mypage-page-link li:last-child{
  border-bottom: 4px solid #fff;
}
.mypage-page-link li a{
  padding: 30px;
  display: block;
  max-width: 460px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.mypage-page-link li a::after{
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #200f4c #200f4c transparent transparent;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: right .3s;
  -o-transition: right .3s;
  transition: right .3s;
}



/*登録情報の確認・変更*/
.page-mypage-box{
  width: 980px;
  max-width: calc(100% - 40px);
  padding-top: 80px;
}
.page-mypage-box.bk_wh{
  background: rgba(31, 25, 87, .9);
  margin-top: -50px;
  padding-top: 140px;
  padding-bottom: 100px;
  border: 1px solid #4d4783;
}
.page-account-box{
  -ms-align-items: center;
  align-items: center;
}
.account-form{
  width: 100%;
}
.account-list{
  width: 790px;
  max-width: 100%;
}
.account-list li{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  border-bottom: 4px solid #fff;
  padding: 1.25em 1em;
  color: #fff;
}
.account-list li p.title{
  width: 35%;
  padding-right: 1em;
  font-weight: 900;
}
.account-list li .data{
  width: 65%
}

* + .squ-arw-btn
,* + .squ-box-btn{
  margin-top: 80px;
}
.squ-arw-btn > *
,.squ-box-btn > *{
  display: block;
  min-width: 200px;
  border: 4px solid #1e0f4f;
  text-align: center;
  padding: 15px 1em;
  font-weight: 900;
  background: #fff;
  color: #200f4c;
}
.squ-arw-btn >*::after{
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: #1e0f4f #1e0f4f transparent transparent;
  position: absolute;
  top: 50%;
  right: .75em;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 2px;
}
.squ-arw-btn button
,.squ-arw-btn input
,.squ-box-btn input
,.squ-box-btn button{
  width: 100%;
  font-size: 1em;
  font-weight: 900;
  line-height: 1;
  font-family: 'Noto Sans JP';
  color: #200f4c;
}
/*myinfo2*/
.page-account-form{
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  -ms-align-items: center;
  align-items: center;
}
.account-form li + li{
  margin-top: 40px;
}
.account-form li > * + *{
  margin-top: 20px;
}
.account-form .title{
  font-weight: 900;
  line-height: 1.4;
}
.account-form .title p.must::after{
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: url('/image/tbb_template/animenova/icn_ask.svg') no-repeat center/100%;
  position: absolute;
  top: 0.2em;
  right: -0.75em;
}

.account-form .data input[type="text"]
,.account-form .data input[type="email"]
,.account-form .data input[type="tel"]
,.account-form .data input[type="password"]
,.account-form .data textarea{
  border-radius: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.account-form .data.flex{
  justify-content: space-between;
}
.account-form .data.flex > *{
  width: calc((100% - 20px)/2)
}
.account-form .data.select
,.account-form .data.radio{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.account-form .data.add > * + *{
  margin-top: 20px;
}
.account-form .data.add > label > * + *{
  margin-top: 10px;
}
.account-form .data input.zip{
  width: 50%;
}
/*radio*/
.radio{
  -ms-align-items: center;
  align-items: center;
}
.radio-warp input{
  display: none;
}
.radio > div + div{
  margin-left: 30px;
}
.radio-input + label{
  padding-left: 40px;
  position: relative;
  cursor: pointer;
  font-size: .9em;
}
.radio-input + label::before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  border: 3px solid #1e0f4f;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.radio-input:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 7.25px;
  width: 16px;
  height: 16px;
  background: #55548f;
  border-radius: 50%;
  transform: translateY(-50%);
}
/*form -- select*/
.select-warp {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.select-warp.year{
  width: 10em;
  max-width: calc(50% + 1em);
}
.select-warp.month
,.select-warp.day{
   width: 7em;
  max-width: calc(100% - (50% + 1em)/2)
}
.select-warp label{
  width: 100%;
  display: inline-block;
}
.select-warp label + p{
  padding: 0 5px;
}
.select-warp select{
  width: 100%;
  display: block;
  background: #fbfbfb;
  padding: 12px 20px 12px 15px;
  font-size: 20px;
  border: 3px solid #1e0f4f;
  line-height: 1;
  font-weight: 900;
   color: #200f4c;
}
.select-warp label::after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 8px 0 8px;
  border-color: #55548f transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: block;
  pointer-events: none;
}
/*form - checkbox*/
.check-warp{
  font-size: .8em;
  margin-top: 10px;
}
.ck-input{
  display: none;
}
.ck-parts{
  padding-left: 25px;
  position:relative;
  margin-right: 20px;
  display: block;
}
.ck-parts::before{
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  transform: translateY(-50%);
  border: 2px solid #C4C4C4;
}
.ck-input:checked + .ck-parts::before{
}
.ck-input:checked + .ck-parts::after{
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 3px);
  left: 6px;
  width: 5px;
  height: 10px;
  transform:translateY(-50%) rotate(40deg);
  border-bottom: 2px solid #1e0f4f;
  border-right: 2px solid #1e0f4f;
}

/*利用規約
===================================*/

.descript-box{
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
  -ms-align-items: center;
  align-items: center;
  line-height: 1.4;
}
.descript-box .top-txt{
}
.descript-cat{
  margin-top: 50px;
}
.descript-cat > * + *{
  margin-top: 20px;
}
.descript-cat h3{
  border-bottom: 1px solid;
  padding-bottom: 5px;
  font-weight: 700;
  font-size: 1.125em;
}
.descript-cat ul.dot > li{
  padding-left: 1em;
}
.descript-cat ul.dot li + li{
  margin-top: 10px;
}
.descript-cat ul.dot > li::before{
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.descript-cat ul.num {
  counter-reset: count 0;
  margin-top: 20px;
}
.descript-cat ul.num > li{
  padding-left: 1.25em;
}
.descript-cat ul.num > li::before{
  content: counter(count)".";
  counter-increment: count 1;
  position: absolute;
  left: 0;
  top: 0;
}

/*tokusho*/
.scta-list{
  font-size: .9em;
}
.scta-list li{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding: 1em;
  border-bottom: 1px solid;
}
.scta-list li:first-child{
  border-top: 1px solid;
}
.scta-list li p.title{
  width: 11em;
  font-weight: 700;
}
.scta-list li .text{
  width: calc(100% - 11em);
  padding-left: 2em;
}

.grecaptcha-badge { visibility: hidden; }