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

.introduce::before{
    content: "";
    display: block;
    padding-top: 100%; /* 1:1 */
}


.sectionWrapper {
    padding: 60px 0;
}
.contentWrapper {
    /* max-width: 1240px; */
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.content {
    width: 50%;
    max-width: 70%;
    /* margin-left: 40px; */
    margin: 0 auto;
}
.content_inner {
    max-width: 85%;
    margin: 0 auto;
    text-align: center;
}
.text {
    margin-bottom: 3rem;
    font-size: 2rem;
    line-height: 1.6;
}
.img_wrapper {
    width: 60%;
    position: absolute;
    top: 0;
    left: 20px;
    z-index: -1;
}
.img_wrapper img {
    object-fit: fill;
}

.title img{
    width: 100%;
    max-width: 300px;
}

@media (max-width: 768px) {
    .contentWrapper {
        padding: 0 15px;
    }
    .content {
        width: 85%;
        max-width: 100%;
    }
    .content_inner {
        width: 80%;
    }
    .title {
        margin-bottom: 3.5rem;
        font-size: 2.5rem;
    }

    .img_wrapper {
        width: 80%;
        left: 15px;
    }
    a.btn {
        width: 80%;
        padding: 3rem 0rem;
        text-align: center;
    }

}

@media (max-width: 425px) {
    .introduceRelative {
        padding-top: 0;
    }
    .content_inner{
        padding-top: 0;
    }

    .title img{
        max-width: 100px;
    }
}


#concept{
    position: relative;
    /* margin-top: 160px; */
}
.contents_bg_left{
    width: 90%;
    position: absolute;
    top: 0;
    left: 0;    
}


#concept .frame{
    position: relative;
    padding: 40px 0;
    background-color: rgb(255 255 255 / 90%);
    border: solid 1px rgb(228 222 235 / 90%);
    max-width: 900px;
}


/****************************************
メインビジュアル
****************************************/
#mainvisual{
    margin: 0;
}
/*パララックス*/
.parallax {
	box-sizing: border-box;
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	padding: 10px;
  }
  body .parallax::before {
    background: url('../images/mainvisual.png') no-repeat center;
	  background-size: cover;/* cover指定 */
    background-position: 45%;
    content: "";
    display: block;
    position: fixed;/* 擬似要素固定 */
    top: 0;
    left: 0;
    z-index: -10;/*重ね順*/
    width: 100%;/* 横幅いっぱい */
    height: 100vh;/* 縦幅いっぱい */
  }
  .h1_logo{
    width: 200px;
  }
  .parallax img{
    width: 100%;
    max-width: 500px;
    margin-top: 50%;
  }


  

/****************************************
背景画像
****************************************/
.bg_marble{
    background: rgb(21 21 21 / 90%)!important;
    background-repeat: no-repeat;
    background-size: cover;
}

/****************************************
ヘッダー
****************************************/
  header {
    height: 65px;
    width: 100%;
    background-color: rgb(17 17 17 / 95%);
    position: fixed;
    top: 0;
    z-index: 110;
    display: flex;
  }
  header img {
    width: 100px;
    vertical-align: middle;
  }
  header nav {
    margin: 0 0 5px auto;
  }
  header ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  header a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    line-height: 17px;
    padding: 17px 20px;
    text-align: center;
  }
  header .sm {
    display: none;
  }
/**********************************　
 ハンバーガーメニュー
************************************/
  @media (max-width: 1254px) {
    header .pc {
      display: none;
    }
    #hamburger {
      background-color: transparent;
      position: relative;
      cursor: pointer;
      margin: 0 0 0 auto;
      height: 60px;
      width: 60px;
    }
    .icon span {
      position: absolute;
      left: 15px;
      width: 30px;
      height: 2px;
      background-color: white;
      border-radius: 8px;
      transition: ease 0.75s;
    }
    .icon span:nth-of-type(1) {
      top: 17px;
    }
    .icon span:nth-of-type(2) {
      top: 28px;
    }
    .icon span:nth-of-type(3) {
      bottom: 19px;
    }
    .close span:nth-of-type(1) {
      transform: rotate(45deg);
      top: 28px;
    }
    .close span:nth-of-type(2) {
      opacity: 0;
    }
    .close span:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 28px;
    }
    .sm {
        top: 60px;
        left: 0px;
        position: absolute;
        z-index: 10;
        width: 100%;
        background-color: rgb(17 17 17 / 95%);
    }
    header ul {
      flex-direction: column;
    }
    header a {
      text-align: center; 
      border-top: solid 0.5px rgba(255, 255, 255, 0.6);
    }
    .header_a_first {
      border-top: none;
    }

    /****************************************
    フッター
    ****************************************/
    .copyright{
      padding: 18px 0 105px 0;
    }
  }

/****************************************
募集バナー
****************************************/
.mv_vtuber_banner{
  display: block;
}
.mv_vtuber_banner_img{
  width: 100%;
  height: auto;
  padding: 0;
}

/****************************************
概要
****************************************/
#introduction{
    position: relative;
    height: 115vh;
}
.transform-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 80%;
    z-index: 0;
    background: rgb(17 17 17 / 100%);
    background-size: cover;
    transform: skewY(-8deg);
    transform-origin: top left;
  }
  .contents {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
    text-align: center;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  /*h2テキスト*/
  #introduction h2{
    font-size: 40px;
    margin-top: 50px;
  }

/****************************************
インパクトプラン
****************************************/
#impact_system{
  overflow: hidden;
}


/****************************************
お支払い方法
****************************************/
  #contents_payment{
    overflow: hidden;
  }
  .card_zone{
      max-width: 1200px;
      margin: 0 auto;
  }
  .card{
      width: 100%;
      height: auto;
      margin: 10px;
    }
  .card__textbox{
    width: 100%;
    height: auto;
    padding: 20px 18px;
    background: #020202;
    box-sizing: border-box;
  }
  .card__textbox > * + *{
    margin-top: 10px;
  }
  .card__titletext{
    font-size: 1.375em;
    font-weight: bold;
    line-height: 125%;
    background:#313131;
    padding: 5px 0;
  }
  .card__overviewtext{
    line-height: 150%;
    text-align: left;
  }
  .card-skin .card__textbox{
    position: relative;
    top: -39px;
    transform: scale(.9);
    border-top: solid 4px #4e4e4e;
    border-bottom: solid 2px #4e4e4e;
    /* border-right: solid 2px #4e4e4e;
    border-left: solid 2px #4e4e4e; */
    border-image: rgb(228 2 127 / 100%);
    border-image-slice: 1;
  }
  /*各種画像*/
  .card__imgframe_01{
    width: 100%;
    height: auto;
    padding-top: 56.25%;
    background: url('../images/price_bank.png') no-repeat center;
    background-size: cover;
    box-sizing: border-box;
  }
  .card__imgframe_02{
    width: 100%;
    height: auto;
    padding-top: 56.25%;
    background: url('../images/price_booth.png') no-repeat center;
    background-size: cover;
    box-sizing: border-box;
  }
  .card__imgframe_03{
    width: 100%;
    height: auto;
    padding-top: 56.25%;
    background: url('../images/price_pixiv_request.png') no-repeat center;
    background-size: cover;
    box-sizing: border-box;
  }
  .card__imgframe_04{
    width: 100%;
    height: auto;
    padding-top: 56.25%;
    background: url('../images/price_skeb.png') no-repeat center;
    background-size: cover;
    box-sizing: border-box;
  } 
  .card__imgframe_05{
    width: 100%;
    height: auto;
    padding-top: 56.25%;
    background: url('../images/price_paypal.png') no-repeat center;
    background-size: cover;
    box-sizing: border-box;
  }
  .card__imgframe_06{
    width: 100%;
    height: auto;
    padding-top: 56.25%;
    background: url('../images/price_fanbox.png') no-repeat center;
    background-size: cover;
    box-sizing: border-box;
  }


/****************************************
制作の流れ
****************************************/
  .flpw_zone  {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #contents_flow li {
    list-style-type: none;
  }
  #contents_flow dd {
    margin-left: 0;
  }
  .flow {
    padding-left: 120px;
    position: relative;
    width: 95%;
    margin: 0 auto;
    /* background: url('../images/img_system_back.png') no-repeat; */
  }
  .flow::before {
    content: "";
    width: 15px;
    height: 100%;
    /* background: #eee; */
    margin-left: -8px;
    display: block;
    position: absolute;
    top: 0;
    left: 120px;
  }
  .flow > li {
    position: relative;
  }
  .flow > li:not(:last-child) {
    margin-bottom: 35px;
  }
  .flow > li .icon {
    font-size: 16px;
    color: #fff;
    background: rgb(228 2 127 / 100%);
    background: -moz-#fff;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
    padding: 8px 20px;
    display: block;
    position: absolute;
    top: 0;
    left: -120px;
    z-index: 100;
  }
  .flow > li .icon::after {
    content: "";
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent rgb(228 2 127 / 100%);
    position: absolute;
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .flow > li dl {
    padding-left: 45px;
    position: relative;
  }
  .flow > li dl::before,
  .flow > li dl::after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
  }
  .flow > li dl::before {
    width: 7px;
    height: 7px;
    margin-top: -3px;
    background: #9a9a9a;
    border-radius: 50%;
    left: -4px;
  }
  .flow > li dl::after {
    width: 30px;
    border-bottom: 1px dashed #9a9a9a;
    position: absolute;
    left: 5px;
  }
  .flow > li dl dt {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1vh;
  }
  .flow dd{
    font-size: 0.875em;
  }



/****************************************
よくある質問
****************************************/
  #contents_question{
    overflow: hidden;
  }
.oneArea {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 1024px;
    margin: 50px auto;
    padding: 0 10px;
  }
  .oneArea .onebox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .oneArea .onebox:nth-child(even) {
    flex-direction: row-reverse;
    margin-top: 20px;
  }
  .oneArea .onebox .imgArea {
    width: 16%;
    position: relative;
  }
  .oneArea .onebox:nth-child(odd) .imgArea img {
    width: 100%;
    max-width: 130px;
    position: absolute;
    top: -20px;
    left: 0;
    padding-right: 30px;
  }
  .oneArea .onebox:nth-child(even) .imgArea img {
    width: 100%;
    max-width: 130px;
    position: absolute;
    top: -20px;
    left: auto;
    right: 0;
    padding-left: 30px;
  }
  .oneArea .onebox .fukiArea {
    width: 63%;
  }
  .oneArea .onebox .fukidasi {
    width: 100%;
    position: relative;
    padding: 25px;
    background-color: #dbdbdb;
    font-size: 1em;
    border-radius: 12px;
    box-sizing: border-box;
  }
  .oneArea .onebox .fukidasi::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: rotate(45deg);
    top: 22px;
    border-right: 25px solid transparent;
    border-bottom: 25px solid transparent;
  }
  .oneArea .onebox .fukidasi::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: rotate(45deg);
    top: 40px;
    border-right: 25px solid transparent;
    border-bottom: 25px solid transparent;
  }
  .oneArea .onebox:nth-child(odd) .fukidasi::before {
    left: -15px;
    border-left: 25px solid #dbdbdb;
    border-top: 25px solid transparent;
  }
  .oneArea .onebox:nth-child(odd) .fukidasi::after {
    left: -25px;
    border-left: 25px solid rgb(29, 29, 29);
    border-top: 25px solid transparent;
  }
  .oneArea .onebox:nth-child(even) .fukidasi {
    background-color: rgb(228 2 127 / 100%);
    color: #fff;
  }
  .oneArea .onebox:nth-child(even) .fukidasi::before {
    left: auto;
    right: -15px;
    border-left: 25px solid transparent;
    border-top: 25px solid rgb(228 2 127 / 100%);
  }
  .oneArea .onebox:nth-child(even) .fukidasi::after {
    left: auto;
    right: -25px;
    border-left: 25px solid transparent;
    border-top: 25px solid rgb(29, 29, 29);
  }
  @media screen and (max-width: 1024px) {
    .oneArea .onebox:nth-child(odd) .imgArea img {
      top: 0;
    }
    .oneArea .onebox:nth-child(even) .imgArea img {
      top: 0;
    }
    .oneArea .onebox .fukidasi {
      padding: 15px;
      font-size: 14px;
    }
    .oneArea .onebox .fukidasi::before {
      top: 8px;
    }
    .oneArea .onebox .fukidasi::after {
      top: 20px;
    }
  }
  @media screen and (max-width: 420px) {
    .oneArea {
      margin: 30px auto;
    }
    .oneArea .onebox:nth-child(even) {
      margin-top: 15px;
    }
    .oneArea .onebox .imgArea {
      width: 20%;
    }
    .oneArea .onebox .fukidasi {
      padding: 10px 15px;
      font-size: 0.875em;
    }
  }

/****************************************
料金表
****************************************/
#contents_system .inner {
    max-width: 900px;
  	margin: 0 auto;
}
.menu_title_01{
    margin: 0 0 20px 0;
    background-image: linear-gradient(to right,#070707 0%, #555555 50%, #070707 100%);
}



#contents_system .inner .system_outer_01 {
  background: url('../images/system_bg_01.jpg') no-repeat;
  background-size: auto;
  background-position: 10% 0%;
  padding: 10px;
  box-shadow: 0 5px 25px 0 rgb(0 0 0 / 10%);
}
#contents_system .inner .system_outer_02 {
  background: url('../images/system_bg_02.jpg') no-repeat;
  background-size: auto;
  background-position: 90% 0%;
  padding: 10px;
  box-shadow: 0 5px 25px 0 rgb(0 0 0 / 10%);
}
#contents_system .inner .system_outer_03 {
  background: url('../images/system_bg_03.jpg') no-repeat;
  background-size: auto;
  background-position: 60% 0%;
  padding: 10px;
  box-shadow: 0 5px 25px 0 rgb(0 0 0 / 10%);
}
#contents_system .inner .system_outer_04 {
  background: url('../images/system_bg_04.jpg') no-repeat;
  background-size: auto;
  background-position: 30% 0%;
  padding: 10px;
  box-shadow: 0 5px 25px 0 rgb(0 0 0 / 10%);
}



#contents_system .inner .system_border {
    border: 1px solid #898989;
    padding: 5%;
}

#contents_system h3 p span {
    font-size: 0.8rem;
}

#contents_system .inner .table_system {
    font-size: 1.1rem;
    width: 100%;
    font-size: 16px;
    border-spacing: 0;
    text-align: center;
    margin: 20px auto 5px auto;
    table-layout: fixed;
}

#contents_system .table_system:last-child {
    margin-bottom: 0;
}
#contents_system .table_system tr {
    border-bottom: 1px solid #858073;
}
#contents_system .table_system {
    border-bottom: none;
}
#contents_system .table_system th,
#contents_system .table_system td {
    font-size: 1em;
    padding: 10px 0;
    line-height: normal;
}
#contents_system .table_system td{
    vertical-align: middle;
}
#contents_system .table_system td span {
    font-size: 0.8em;
}
#contents_system .table_system  {
    padding-bottom: 0;
}
#contents_system .table_system .menu_ng {
    font-size: 0.9rem;
    padding: 4px 0 16px;
}
#contents_system .table_system td.price{
    font-size: 1em;
}
#contents_system .table_system td .icon-arrow-right {
    font-size: 1em;
    padding: 0 5px;
}
#contents_system .ng_contents{
  background-color: rgb(228 2 127 / 100%);
  padding: 8px 5px 8px 15px;
  margin-bottom: 15px;
}


/*------------------------------------------------------------
fadein
------------------------------------------------------------*/
.RightToLeft {
  opacity: 0;
  transform: translateX(50px);
  transition: .6s;
}
.RightToLeft.is-show {
  opacity: 1;
  transform: translateY(0);
}
.LeftToRight {
  opacity: 0;
  transform: translateX(-50px);
  transition: .6s;
}
.LeftToRight.is-show {
  opacity: 1;
  transform: translateY(0);
}
.fadein {
  opacity: 0;
  transform: translateY(100%);
  transition: .6s;
}
.fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}
.delay_a {
  transition-delay: .2s;
}
.delay_b {
  transition-delay: .4s;
}
.delay_c {
  transition-delay: .6s;
}
.delay_d {
  transition-delay: .8s;
}
.delay_e {
  transition-delay: 1.0s;
}


/****************************************
plan一覧
****************************************/
#contents_plan {
  overflow: hidden;
}
.plan_contents{
  max-width: 1500px;
  width: 95%;
  margin: 0 auto;
  justify-content: center;
}
.plan_contents img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
#contents_plan .plan_text{
    color: transparent;
    background: rgb(228 2 127 / 100%);
    -webkit-background-clip: text;
}

.plan_text{
  display:table-cell;
  vertical-align:middle;
}
/*各種項目*/
.container_01{
  display: table;
  width: 100%;
  height: 300px;
  background: url(../images/strength_numbering_01.png) no-repeat;
  background-size: 120px;
  background-position: right top;
  margin: 0 auto;
}
.container_01 .target{
  display:table-cell;
  vertical-align:middle;
  font-size: 0.875em;
}
.container_02{
  display: table;
  width: 100%;
  height: 300px;
  background: url(../images/strength_numbering_02.png) no-repeat;
  background-size: 120px;
  background-position: right top;
  margin: 0 auto;
}
.container_02 .target{
  display:table-cell;
  vertical-align:middle;
}
.container_03{
  display: table;
  width: 100%;
  height: 300px;
  background: url(../images/strength_numbering_03.png) no-repeat;
  background-size: 120px;
  background-position: right top;
  margin: 0 auto;
}
.container_03 .target{
  display:table-cell;
  vertical-align:middle;
}


/****************************************
今すぐ依頼する
****************************************/
#contents_reques_zone{
  text-align: center;
}
#contents_reques_zone img{
  text-align: center;
  margin: 0px auto 0px auto;
  display: block;
  width: 100%;
}
#contents_reques_zone p{
  font-size: 24px;
}
.text_up_size{
	font-size: 14px;
}


/****************************************
フッター
****************************************/
#footer02 {
    background: rgb(17 17 17 / 98%);
  }
  .ie #footer02 .logo img,
  #footer02 .logo {
    display: inline-block;
    width: 100%;
    max-width: 150px;
    padding: 20px 0 10px 0;
  }
  #footer02 .nav li a {
    padding: 15px;
  }
  #footer02 .c-btn {
    margin-left: 25px;
  }
  .inner_block{
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer_sp_display{
    display: inline-block;
    padding-left: 5px;
  }
      /*お問い合わせボタン*/
      .btn_area {
        margin-top: 40px;
      }
      .c_btn a {
        background:linear-gradient(25deg, #ff4da1, rgb(228 2 127 / 100%));
        transition: 0.3s all ease 0s;
        padding: 8px 14px;
        display: block;
        color: #fff;
        font-weight: bold;
        font-size: 14px;
        width: 200px;
        margin: 0 auto;
        text-align: center;
      }
      /*コピーライト*/
      .copyright {
        color: #fff;
        background-color: rgb(55 55 55 / 90%);
        font-size: 0.5em;
        letter-spacing: 0.05em;
        line-height: 1.3;
        text-align: center;
        padding: 18px 0;
      }
    /*snsアイコン*/
    footer .sns_icon{
        font-size: 24px;
    }
    footer .sns_icon li{
       padding: 0 10px 40px;
    }
  
  @media screen and (min-width: 1143px) {
    #footer02 .logo {
      padding: 10px 0;
    }
    #footer02 .wrap {
      padding: 40px 0 10px 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 95%;
      margin: 0 auto;
    }
    #footer02 .cont {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
    }
    #footer02 .nav {
      display: inline-block;
    }
    #footer02 .nav li {
      display: inline-block;
    }
    .footer_sp_display{
      display: none;
    }
  }
  
  @media only screen and (max-width: 1142px) {
    #footer02 {
      padding: 20px 0 0;
    }
    #footer02 .inner-block {
      padding: 0;
    }
    .ie #footer02 .logo img,
    #footer02 .logo {
      display: block;
      margin: 0 auto 20px;
    }
    #footer02 .c-btn {
      margin-bottom: 20px;
    }
    #footer02 .nav li {
      border-top: 1px solid #858073;
    }
    #footer02 .nav li a {
      padding: 12px 20px;
      display: block;
      background-size: 5px auto;
      text-align: center;
    }
    #footer02 .nav li:last-child {
      border-bottom: 1px solid #858073;
    }
    /*コピーライト*/
    .copyright {
        font-size: 10px;
        letter-spacing: 0.1em;
        line-height: 1.3;
        text-align: center;
        padding: 18px 0 120px 0;
    }
  }

    /*追従ボタン*/
    #footer-fix {
        display: block;
        margin: 0 auto 4px 0;
        width: 100%;
        position: fixed;
        bottom: 0;
        text-align: center;
        font-size: 16px;
        z-index: 999;
    }
    #footer-fix i{
        font-size: 1.2em;
    }
    #footer-fix  #footer-fix-menu {
        text-align: center;
        margin: 0 auto;
        padding: 0;
        display: table;
        width: 95%;
    }
    #footer-fix  #footer-fix-menu li {
        display: table-cell;
        width: 33.33%;
        background-image: linear-gradient(25deg, #ff4da1, rgb(228 2 127 / 100%));
        padding: 0;
        margin: 0;
        height: 55px;
        position: relative;
        vertical-align: middle;
        font-size: 14px;
        line-height: 1.5em;
        letter-spacing: 0.25em;
        transition: 0.5s;
    }
    #footer-fix  #footer-fix-menu li:hover {
        opacity :0.6;
        transition: 0.5s;
    }
    #footer-fix  #footer-fix-menu li:first-child {
        border-right: 1px solid #1d1d1d;
    }
    #footer-fix  #footer-fix-menu li:last-child {
      border-left: 1px solid #1d1d1d;
  }
    #footer-fix  #footer-fix-menu li a {
        display :block;
        position :absolute;
        top :0;
        left :0;
        width :100%;
        height :100%;
    }
    #footer-fix p{
        background: rgb(17 17 17 / 95%);
        width: 95%;
        margin: 0 auto;
        padding: 7px 0;
    }



/*tablet--------------------------------------------------------*/
@media screen and (min-width: 610px){
	/****************************************
    フッター
    ****************************************/
    .card{
      width: 45%;
      justify-content: flex-start;
    }

    /****************************************
    制作の流れ
    ****************************************/
  .flow {
    width: 70%;
  }

    /****************************************
    plan一覧
    ****************************************/
    .plan_contents{
      width: 95%;
      max-width: 1200px;
      justify-content: space-between;
    }
    .container_01 .target{
      font-size: 1em;
    }
    .plan_contents img{
      width: 48%;
      height: auto;
      object-fit: contain;
    }
    /*各種項目*/
    .container_01{
      width: 48%;
      margin: 0;
    }
    .container_02{
      width: 48%;
      margin: 0;
    }
    .container_03{
      width: 48%;
      margin: 0;
    }
}

/*pc------------------------------------------------------------*/
@media screen and (min-width: 800px) {
    body .parallax::before {
      background-position: 40%;
    }
    .contents_bg_left{
        width: 52%;
        position: absolute;
        top: 0;
        left: 0;    
    }

    .tab_area{
        width: 60%;
        margin:0 auto;
    }

      /*h2テキスト*/
    #introduction h2{
        font-size: 60px;
        margin-top: 50px;
    }

    /****************************************
    概要
    ****************************************/
    #introduction{
      height: 105vh;
    }

    /****************************************
    募集バナー
    ****************************************/
    .mv_vtuber_banner{
      display: flex;
      justify-content: center;
    }
    .mv_vtuber_banner_img{
      width: 50%;
      height: auto;
      padding: 0 20px;
    }

    /****************************************
    お支払い方法
    ****************************************/
    .card{
        width: 30%;
    }

    /****************************************
    料金表
    ****************************************/
    #contents_system .table_system td span {
        font-size: 0.9rem;
    }
    #contents_system .table_system th,
    #contents_system .table_system td {
        font-size: 1.2em;
    }
    #contents_system .table_system td.price{
        font-size: 1.4rem;
    }
    #contents_system .table_system td .icon-arrow-right {
        font-size: 1.2rem;
    }

    /****************************************
    制作の流れ
    ****************************************/
  .flow {
    width: 41%;
  }
  .flow dd{
    font-size: 1em;
  }
  .flow > li dl {
    padding-left: 100px;
  }
  .flow > li dl::after {
    width: 80px;
  }
  .flow > li .icon{
    font-size: 16px;
    padding: 8px 50px;
    left: -190px;
  }



  /****************************************
  今すぐ依頼する
  ****************************************/
  #contents_reques_zone p{
    font-size: 34px;
  }
  .text_up_size{
    font-size: 24px;
  }

	/****************************************
    フッター
    ****************************************/
    /*追従ボタン*/
	#footer-fix {
		display: none!important;
	}
  .copyright{
    padding: 18px 0;
  }

}