@charset "UTF-8";

main {
  font-family: "Yu Gothic", sans-serif;
  line-height: 1.5;
  background-color: #151515;
}

img {
  max-width: 100%;
}

.inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.mv {
  padding: 80px 0 20px;
  text-align: center;
}

.mv h1 {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  font-size: 28px;
}

.mv h1 span {
  color: #C80596;
  margin: 0 10px;
}

.mv h1>b {
  border: 2px solid #fff;
  padding: 4px 30px;
  font-size: 24px;
  margin-right: 22px;
}

.description {
  text-align: center;
  background: linear-gradient(90deg, rgba(200, 5, 150, 1) 0%, rgba(40, 0, 200, 1) 100%);
  font-weight: bold;
  padding: 20px 0;
}

.description h2 {
  color: #FFEB00;
  font-size: 28px;
}

.description p {
  color: #fff;
  font-size: 32px;
  margin-top: 10px;
}

.description .inner>div {
  font-size: 24px;
  background-color: #FFEB00;
  width: fit-content;
  padding: 10px 54px;
  margin: 10px auto 0;
}

.membership {
  padding: 60px 0 80px;
}

.membership .inner>ul {
  display: flex;
}

.membership .inner>ul>li {
  background-color: #fff;
  padding: 30px 35px;
  width: 100%;
  text-align: center;
}

.membership .inner>ul>li:nth-child(2) {
  margin-left: 20px;
}

.membership .inner>ul>li h3 {
  font-size: 24px;
  font-weight: bold;
}

.membership .inner>ul>li .button {
  margin-top: 20px;
}

.membership .inner>ul>li .button a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  border-radius: 90px;
  background: linear-gradient(90deg, rgba(200, 5, 150, 1) 0%, rgba(40, 0, 200, 1) 100%);
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  position: relative;
}

.membership .inner>ul>li:nth-child(2) .button a {
  background: #C80596;
}

.membership .inner>ul>li .button a::before {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/ico_txtlink_white.svg);
}

.membership .inner>ul>li p {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.membership .inner>ul>li:nth-child(2) p {
  text-align: center;
}

.membership .inner>ul>li p:nth-of-type(1) {
  margin-top: 10px;
}

.membership .inner>div {
  background-color: #2B2B2B;
  margin-top: 60px;
  padding: 30px 50px;
}

.membership .inner>div p {
  font-size: 14px;
  color: #fff;
}

a {
  transition: .3s;
}

a:hover {
  opacity: .7;
}

.common_footer_wrapper .faq_section {
  text-align: left;
  line-height: 1.5;
  background-color: #fff;
  color: #000;
}

.common_footer_section_title_faq {
  margin: min(0.66666vw, 10px) 0 min(1.2vw, 18px);
  font-weight: bold;
  text-align: center;
  font-size: min(2vw, 30px);
  line-height: 1.3;
}

.common_footer_wrapper .faq_common_footer_section_list {
  max-width: 816px;
  margin: auto;
}

.common_footer_wrapper .faq_item {
  border-bottom: 1px solid #ced5d6;
}

.common_footer_wrapper .faq_question {
  padding: 2.3% 0 2.3% 6.4%;
  position: relative;
  font-weight: bold;
  cursor: pointer;
}

.common_footer_wrapper .faq_question::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/leminolp_icon_2_pc_off.webp) no-repeat center center / cover;
}

.common_footer_wrapper .faq_question::after {
  content: 'Q.';
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
}

.common_footer_wrapper .faq_answer {
  padding: 0 0 2.3% 6.4%;
  position: relative;
}

.footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 15.625vw;
  background-color: #ff0e71;
  background: -webkit-gradient(linear, left top, right top, from(#ffbc27), color-stop(60%, #FF5853), to(#ff0e71));
  background: -webkit-linear-gradient(left, #ffbc27 0%, #FF5853 60%, #ff0e71 100%);
  background: -o-linear-gradient(left, #ffbc27 0%, #FF5853 60%, #ff0e71 100%);
  background: linear-gradient(left, #ffbc27 0%, #FF5853 60%, #ff0e71 100%);
  color: #fff;
  position: relative;
  font-size: 2.86458vw;
}

@media screen and (min-width: 769px) {
  .footer .copyright {
    font-size: 11px;
    height: 61px;
  }
}

.w-full {
  width: 100%;
}

@media only screen and (max-width: 812px) {
  .inner {
    padding: 0 20px;
  }

  .mv {
    padding: 30px 0 30px;
  }

  .mv h1 {
    margin-top: 30px;
    font-size: 24px;
    display: flex;
    flex-direction: column;
  }

  .mv h1>b {
    display: none;
  }

  .mv h1 span {
    font-size: 26px;
    line-height: 1;
  }

  .description h2 {
    font-size: 18px;
  }

  .description p {
    font-size: 24px;
  }

  .description p span {
    font-size: 20px;
  }

  .description .inner>div {
    width: 100%;
    font-size: 18px;
    padding: 10px;
    margin: 10px auto 0;
  }

  .membership {
    padding: 30px 0 60px;
  }

  .membership .inner>ul {
    flex-direction: column;
  }

  .membership .inner>ul>li {
    padding: 30px 20px;
  }

  .membership .inner>ul>li:nth-child(2) {
    margin-left: unset;
    margin-top: 20px;
  }

  .membership .inner>ul>li h3 {
    font-size: 20px;
  }

  .membership .inner>ul>li .button a {
    padding: 17px 25px;
    font-size: 18px;
  }

  .membership .inner>ul>li:nth-child(2) .button a {
    font-size: 16px;
  }

  .membership .inner>ul>li .button a::before {
    right: 10px;
  }

  .membership .inner>div {
    background-color: #2B2B2B;
    margin-top: 30px;
    padding: 30px 20px;
  }

  footer {
    height: 50px;
  }
}

/* //FV bnr */
/* FV CTA */
.lp_fv_cta p {
  font-size: 22px;
}

.lp_fv_cta_btn {
  display: block;
  width: min(44vw, 660px);
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .lp_fv_cta_btn {
    width: min(88vw, 660px);
  }
}

.lp_fv_top_cta_btn:hover {
  opacity: .6;
}

.lp_fv_cta_btn:hover {
  opacity: .6;
}

@media screen and (max-width: 640px) {
  .lp_fv_cta_btn {
    font-size: 19px;
  }

  .lp_fv_cta p {
    font-size: 16px;
  }
}

.pc_on {
  display: block;
}

.sp_on {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_on {
    display: none;
  }

  .sp_on {
    display: block;
  }

  .faq_answer .indent_faq_SP {
    margin-left: min(3.2vw, 24px);
    display: inline-block;
  }
}

.common_footer_wrapper {
  position: relative;
  font-family: YakuHanJP, "Hiragino Kaku Gothic ProN", YuGothic, 游ゴシック, meiryo, メイリオ, "ms gothic", "ms pゴシック", osaka, sans-serif;
  font-size: 16px;
  color: #fff;
  background-color: #000;
}

.common_footer_wrapper img {
  max-width: 100%;
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .common_footer_wrapper {
    font-size: 14px;
  }
}

.common_footer_section {
  max-width: 1000px;
  margin: auto;
  padding: 1.65% 0;
  text-align: center;
}

.common_footer_section.feature {
  padding: 3.65% 0;
}

@media screen and (max-width: 768px) {
  .common_footer_section.feature {
    padding: 8% 0;
  }
}

.common_footer_section_faq {
  margin: auto;
  padding: 3% 2% 4%;
  text-align: center;
}

.common_footer_section_last {
  max-width: 1000px;
  margin: auto;
  padding: 0 2% 3%;
  text-align: center;
}

.common_footer_section>*:last-child {
  margin-bottom: 0;
}

.common_footer_section_title {
  margin-top: min(0.66666vw, 10px);
  font-weight: bold;
  text-align: center;
  font-size: min(2.66666vw, 40px);
  line-height: 1.3;
}

.common_footer_section_title_faq {
  margin: min(0.66666vw, 10px) 0 min(1.2vw, 18px);
  font-weight: bold;
  text-align: center;
  font-size: min(2vw, 30px);
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .common_footer_section_title_faq {
    font-size: min(5.73333vw, 43px);
  }

  .common_footer_section_faq {
    padding: 7.5% 2% 0;
  }

  .common_footer_section_last {
    padding: 0 2% 6.6%;
  }
}

.common_footer_section_text {
  margin-bottom: 15px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .common_footer_section {
    padding: 4% 6%;
  }

  .common_footer_section_text {
    font-size: min(3.73333vw, 28px);
    margin-top: 4%;
  }

  .common_footer_section_title {
    font-size: min(5.6vw, 42px);
    margin-bottom: 12.5%;
  }
}

/* //COMMON */
/* FEATURE */
.common_footer_feature {
  background: #efefef;
  max-width: 100%;
}

.common_footer_feature_img {
  margin-bottom: 10px;
}

.common_footer_feature_img img {
  max-width: 610px;
}

@media screen and (max-width: 768px) {
  .common_footer_feature {
    padding: min(8vw, 60px) 2%;
  }

  .common_footer_feature_img {
    padding: 0 4%;
  }

  .common_footer_feature_img img {
    max-width: 683px;
  }
}

/* //MASTHEAD */
/* MEDIA */
.common_footer_wrapper .media {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: auto;
  position: relative;
}

.common_footer_wrapper .media .common_footer_section_title {
  font-feature-settings: "palt";
  letter-spacing: 0.07rem;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .common_footer_wrapper .media {
    flex-direction: column-reverse;
  }

  .common_footer_wrapper .media .common_footer_section_title {
    display: none;
  }
}

/* //MEDIA */
/* CTA */
.common_footer_cta {
  padding: 2.8% 2% 4.2%;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}

.common_footer_cta_second {
  padding: 4.8% 2%;
}

.common_footer_cta p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: min(2vw, 30px);
}

.common_footer_cta_btn {
  display: inline-block;
  width: 95%;
  max-width: 400px;
  margin: 5px auto 10px;
  padding: 15px;
  background: #d00e31;
  box-shadow: 0 5px 0 #8c0018;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  transition: all .3s;
  text-decoration: none;
}

@media screen and (max-width: 768px) {

  .common_footer_cta {
    padding: 5.5% 2% 6.8%;
  }

  .common_footer_cta p {
    font-size: min(4.53333vw, 34px);
    font-weight: bold;
    margin-bottom: -2%;
    line-height: min(5.73333vw, 43px);
  }

  .common_footer_cta_second {
    padding: 10% 2% 7%;
  }
}






.common_footer_wrapper img+p {
  padding: 5px;
  background: #242424;
  color: #fff;
  font-size: .8em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.common_footer_works_list_small {
  font-size: 11px;
  margin-top: 5px;
  color: #7d7d7d;
}

.common_footer_wrapper .common_footer_rental::before {
  display: inline-block;
  content: "";
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  top: 0.2em;
  right: 0.2em;
  z-index: 1;
  background: url(https://image.video.dmkt-sp.jp/custom/img/ft_common/yen_red2.png) left top no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .common_footer_wrapper .common_footer_works_list li:nth-of-type(n+3) {
    display: none;
  }

  .common_footer_wrapper .common_footer_works_list li {
    width: 49%;
  }
}

/* //GENRE */
/* PRICE */
.common_footer_wrapper .price .common_footer_image_wrapper {
  max-width: 800px;
}

/* //PRICE */
/* FREE */
.common_footer_wrapper .free .common_footer_image_wrapper {
  width: 90%;
  max-width: 400px;
  margin: auto;
  margin-bottom: 30px;
}

/* //FREE */
/* CAMPAIGN */
.common_footer_wrapper .campaign_list {
  padding: 20px 0;
}

.common_footer_wrapper .campaign_item:not(:last-of-type) {
  margin-bottom: 40px;
}

.common_footer_wrapper .campaign_item_inner {
  box-shadow: 0px 0px 5px 3px #e6e6e6;
}

.common_footer_wrapper .campaign_title {
  padding: 10px 0;
  background: #000;
  text-align: center;
  font-size: 1.25em;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
}

.common_footer_wrapper .campaign_image a {
  display: block;
  max-width: 450px;
  margin: auto;
  margin-bottom: 10px;
  transition: opacity .2s;
}

.common_footer_wrapper .campaign_image a:hover {
  opacity: .7;
  transition: opacity .2s;
}

.common_footer_wrapper .campaign_content {
  padding: 20px;
  text-align: center;
}

.common_footer_wrapper .campaign_content>*:last-child {
  margin-bottom: 0;
}

.common_footer_wrapper .campaign_notes {
  padding-top: 10px;
  text-align: left;
  line-height: 1.5;
  font-size: 0.9em;
}

.campaign_dpoint_title_wrap {
  text-align: center;
  position: relative;
}

.campaign_dpoint_title_wrap_moraeru {
  display: block;
  max-width: 600px;
  margin: 50px auto 20px;
}

.campaign_dpoint_title_wrap_moraeru::before {
  position: absolute;
  content: url(../images/fukidashi01_moraeru.png);
  transform: scale(0.5);
  top: -90px;
  left: -120px;
}

.campaign_dpoint_title_wrap_tsukaeru {
  display: block;
  max-width: 700px;
  margin: 90px auto 20px;
}

.campaign_dpoint_title_wrap_tsukaeru::before {
  position: absolute;
  content: url(../images/fukidashi01_tsukaeru.png);
  transform: scale(0.5);
  top: -122px;
  left: -85px;
}

.campaign_dpoint_title_wrap p {
  font-size: 20px;
  font-weight: bold;
  color: #fda321;
  margin: 0 auto 25px;
  width: 100%;
  display: block;
  position: relative;
}

.campaign_dpoint_title_wrap p:before {
  position: absolute;
  content: '';
  bottom: -5px;
  width: 191px;
  height: 3px;
  background-color: #fda321;
}

.campaign_dpoint_title_wrap p:after {
  position: absolute;
  content: '';
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
  width: 0px;
  border-color: #fda321;
  border-style: solid;
  border-width: 10px;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
}

.campaign_dpoint_title_wrap h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

.campaign_dpoint_title_image {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .common_footer_wrapper .campaign_content {
    padding: 15px;
  }

  .campaign_dpoint_title_wrap p {
    font-size: 16px;
    margin: 0 auto 20px;
  }

  .campaign_dpoint_title_wrap h3 {
    font-size: 20px;
  }

  .campaign_dpoint_title_wrap p:before {
    width: 152px;
  }

  .campaign_dpoint_title_wrap_moraeru {
    max-width: 300px;
    margin: 40px auto 20px;
  }

  .campaign_dpoint_title_wrap_moraeru::before {
    top: -105px;
    left: -90px;
    transform: scale(0.3);
  }

  .campaign_dpoint_title_wrap_tsukaeru {
    max-width: 350px;
    margin: 40px auto 20px;
  }

  .campaign_dpoint_title_wrap_tsukaeru::before {
    transform: scale(0.3);
    top: -110px;
    left: -65px;
  }
}

/* //CAMPAIGN */
/* FAQ */
.common_footer_wrapper .faq_section {
  text-align: left;
  line-height: 1.5;
  background-color: #fff;
  color: #000;
}

.common_footer_wrapper .faq_common_footer_section_list {
  max-width: 816px;
  margin: auto;
}

@media screen and (max-width: 768px) {

  .common_footer_wrapper .faq_common_footer_section_list {
    max-width: 750px;
    margin-top: 5.5%;
  }
}

.common_footer_wrapper .faq_question.is-active {
  color: #d00f31;
}

.common_footer_wrapper .faq_question.is-active::before {
  background: url(../images/leminolp_icon_2_pc_on.webp) no-repeat center center / cover;
}

@media screen and (max-width: 768px) {

  .common_footer_wrapper .faq_question {
    padding: 5% 2% 5% 12%;
  }

  .common_footer_wrapper .faq_question::after {
    top: min(4.66666vw, 35px);
    left: min(6.66666vw, 50px);
    transform: translateY(0);
  }

  .common_footer_wrapper .faq_question::before {
    width: 5.33333vw;
    height: 5.33333vw;
    max-width: 40px;
    background: url(../images/leminolp_icon_2_sp_off.webp) no-repeat center center / cover;
  }

  .common_footer_wrapper .faq_question.is-active::before {
    width: 5.33333vw;
    height: 5.33333vw;
    max-width: 40px;
    background: url(../images/leminolp_icon_2_sp_on.webp) no-repeat center center / cover;
  }
}

.common_footer_wrapper .faq_answer {
  padding: 0 0 2.3% 6.4%;
  position: relative;
}

.common_footer_wrapper .faq_answer::before {
  content: 'A.';
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 4%;
}

.common_footer_wrapper .faq_answer a,
.common_footer_wrapper .faq_answer a:visited {
  color: #000;
}

.common_footer_wrapper .faq_answer a {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {

  .common_footer_wrapper .faq_answer {
    padding: 0 2% 5% 12%;
    position: relative;
  }

  .common_footer_wrapper .faq_answer::before {
    left: min(6.66666vw, 50px);
  }

  .common_footer_wrapper .faq_section {
    font-size: min(3.33333vw, 25px);
  }
}

/* //ANNOTATION */
/* FOOTER */
.common_footer_wrapper .page_footer {
  background: #000;
  color: #fff;
}

.common_footer_wrapper .page_footer .common_footer_section_text a {
  text-decoration: underline;
  transition: opacity .2s;
}

.common_footer_wrapper .page_footer a,
.common_footer_wrapper .page_footer a:visited {
  color: #fff;
}

.common_footer_wrapper .page_footer a:not(.common_footer_cta_btn):hover {
  opacity: .7;
  transition: opacity .2s;
}

.common_footer_wrapper .footer_inner {
  width: 98%;
  text-align: left;
  font-size: 10px;
}

.common_footer_wrapper .footer_inner .common_footer_cta {
  padding-top: 0;
}

.common_footer_section_last .common_footer_section_text_bottom_second {
  font-size: min(0.86666vw, 13px);
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .common_footer_section_last .common_footer_section_text_bottom_second {
    font-size: min(3.2vw, 24px);
  }

  .common_footer_section_last .common_footer_section_text_bottom_second.mt {
    margin-top: 7.1%;
    line-height: 1.47;
  }
}

@media screen and (max-width: 768px) {
  .common_footer_section_text_bottom {
    font-size: min(2.66666vw, 20px);
    line-height: 1.6;
  }

  .common_footer_section_text_second {
    margin-top: 1.5%;
    font-size: min(2.93333vw, 22px);
  }

  .common_footer_section_text_third {
    margin-top: 8%;
  }
}