@charset "UTF-8";
/* ==================================================
全体構成

ヘッダー
各項目共通
fadein
ボタン
heroarea
新作
前作
youtube
クレジット
================================================== */


/* ヘッダー
-------------------------------------------------- */
.lp_header {
  height: 16vw;
  display: flex;
  justify-content: space-between;
  position: absolute;
  background: none;
}
@media screen and (min-width: 769px) {
  .lp_header {
    height: 57px;
    padding: 0 12rem;
    margin-top: 2rem;
  }
}

.logo img {
  width: 25vw;
}
@media screen and (min-width: 769px) {
  .logo img {
    width: 150px;
  }
}

.twitter img {
  width: 100%;
}

.twitter_icon {
  display: block;
  width: 12vw;
}
@media screen and (min-width: 769px) {
  .twitter_icon {
    width: 57px;
  }
}

.lp_footer {
  position: relative;
  z-index: 10;
}

.lp_footer.type_color {
  background: #ff9c9c;
}


/* 各項目共通
-------------------------------------------------- */
html {
  font-size: 62.5%;
}

a:link { color: #000; }
a:visited { color: #000; }
a:hover { color: #ff9c9c; }
a:active { color: #ff9c9c; }

#patrasmr02 {
  overflow: hidden;
  width: 100%;
}

#patrasmr02 .lp-sec {
  position: relative;
  width: 100%;
}

a:hover {
  opacity: 0.8;
}

#patrasmr02 img {
  width: 100%;
  vertical-align: bottom;
}

.pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}


/* fadein
-------------------------------------------------- */
.fadeIn {
  animation: fadeIn 1s ease 0s 1 both;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 2;
    transform: translateY(0);
  }
}

.fadeIn_02 {
  animation: fadeIn 2.5s ease 0s 1 both;
}
@keyframes fadeIn_02 {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 2;
    transform: translateY(0);
  }
}

.fadein_up {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1.5s;
}
.is-show {
  transform: translate(0, 0);
  opacity: 1;
}


/* ボタン
-------------------------------------------------- */
a.item_button {
  display: block;
  width: 65vw;
  height: 12vw;
  background-color: #ffa200;
  border-radius: 50em;
  text-align: center;
  margin: 0 auto;
  margin-top: 8vw;
  color: #fff;
  font-family: maru-maru-gothic-bsr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5vw;
  line-height: 12vw;
}
@media screen and (min-width: 769px) {
  a.item_button {
    width: 298px;
    height: 51px;
    font-size: 20px;
    line-height: 50px;
    margin: 0;
    margin-top: 4rem;
  }
}

a.item_button::after {
  font-family: "Font Awesome 5 Pro";
  content: '\f0da';
  font-size: 5vw;
  font-weight: 600;
  margin-left: 1vw;
}
@media screen and (min-width: 769px) {
  a.item_button::after {
    font-size: 20px;
    margin-left: 1rem;
  }
}

a.item_button:hover {
  color: #fff;
  transform: translateY(10%);
}


/* heroarea
-------------------------------------------------- */
#patrasmr02.hero {
  display: inline-block;
}

.hero_wrap {
  background-image: url(../img/main_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right -46vw;
  margin: 7vw 0;
  height: 100vh;
}

@media screen and (min-width: 769px) {
  .hero_wrap {
    background-position: top center;
    margin: 40px 90px;
  }
}

.main_patra_logo {
  width: 90vw;
  padding-top: 85vw;
}
@media screen and (min-width: 769px) {
  .main_patra_logo {
    max-width: 626px;
    padding-top: 27rem;
    margin-left: -6rem;
  }
}

.main_logo {
  width: 100vw;
  padding-top: 3vw;
}
@media screen and (min-width: 769px) {
  .main_logo {
    max-width: 992px;
    margin-left: -9rem;
    padding-top: 1rem;
  }
}

.scroll {
  width: 3vw;
  position: absolute;
  top: 16vw;
  right: 6vw;
}
@media screen and (min-width: 769px) {
  .scroll {
    width: 23px;
    top: auto;
    bottom: 0;
    right: 13rem;
  }
}

/* 線の描写 */
.scroll::before {
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
  left: -10px;
    /*線の形状*/
  width: 4px;
  height: 30px;
  background: #fff;
    /*線の動き2秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}
@media screen and (min-width: 769px) {
  .scroll::before {
    left: -20px;
    animation: pathmove 2s ease-in-out infinite;
    width: 8px;
    height: 100px;
  }
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0%{
    height: 0;
    top: 0;
    opacity: 0;
  }
  30%{
    height: 30px;
    opacity: 1;
  }
  100%{
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@media screen and (min-width: 769px) {
  @keyframes pathmove {
    0%{
      height: 0;
      top: 0;
      opacity: 0;
    }
    30%{
      height: 100px;
      opacity: 1;
    }
    100%{
      height: 0;
      top: 160px;
      opacity: 0;
    }
  }
}


/* 新作
-------------------------------------------------- */
.new_rel {
  background-image: url(../img/bg01.jpg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top right -55vw;
  margin-top: 28vw;
}
@media screen and (min-width: 769px) {
  .new_rel {
    background-position: top center;
    margin-top: 40rem;
  }
}

.new_rel_wrap {
  padding: 5vw;
}
@media screen and (min-width: 769px) {
  .new_rel_wrap {
    padding: 0;
    width: 900px;
    margin: 0 auto;
  }
}

.sec_title {
  text-align: center;
  margin-top: -7vw;
}
@media screen and (min-width: 769px) {
  .sec_title {
    text-align: center;
    margin-top: -7vw;
  }
}

.sec_title_txt {
  font-family: caflisch-script-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16vw;
}
@media screen and (min-width: 769px) {
  .sec_title_txt {
    font-size: 80px;
  }
}

.sec_title_txt_s {
  font-family: maru-maru-gothic-bsr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4vw;
  letter-spacing: 2vw;
}
@media screen and (min-width: 769px) {
  .sec_title_txt_s {
    font-size: 16px;
    letter-spacing: 2rem;
  }
}

.catch_wrap {
  font-family: vdl-megamaru, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4vw;
  color: #5eacfc;
  text-align: center;
  margin-top: 5vw;
}
@media screen and (min-width: 769px) {
  .catch_wrap {
    font-size: 36px;
    margin-top: 8rem;
  }
}

.catch_txt {
  margin-top: 1.2vw;
  background-color: #fff;
  display: inline-block;
  padding: 0.5vw 4vw;
}
@media screen and (min-width: 769px) {
  .catch_txt {
    margin-top: 1.2rem;
    padding: 0.3rem 4rem;
  }
}

.catch_txt span {
  font-size: 5vw;
}
@media screen and (min-width: 769px) {
  .catch_txt span {
    font-size: 47px;
  }
}

@media screen and (min-width: 769px) {
  .item_wrap {
    display: flex;
    justify-content: center;
    margin-top: 7rem;
  }
}

.item_img {
  margin-top: 8vw;
}
@media screen and (min-width: 769px) {
  .item_img {
    width: 410px;
    margin-top: 0;
  }
}

.item_txt_wrap {
  text-align: center;
  font-family: maru-maru-gothic-bsr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4vw;
  margin-top: 5vw;
}
@media screen and (min-width: 769px) {
  .item_txt_wrap {
    text-align: left;
    font-size: 16px;
    margin-top: 0;
    margin-left: 4rem;
  }
}

.item_title_txt {
  line-height: 6vw;
}
@media screen and (min-width: 769px) {
  .item_title_txt {
    line-height: 3rem;
    padding-top: 3rem;
  }
}

.price_txt {
  margin-top: 5vw;
  font-size: 5vw;
  color: #f00;
}
@media screen and (min-width: 769px) {
  .price_txt {
    margin-top: 3rem;
    font-size: 18px;
  }
}

.price_txt strong {
  background-color: #f00;
  color: #fff;
  font-size: 4.5vw;
  padding: 0.5vw 2vw;
  margin-right: 2vw;
  border-radius: 1.5vw;
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  .price_txt strong {
    font-size: 18px;
    padding: 0.2rem 1rem;
    margin-right: 1rem;
    border-radius: 0.7rem;
  }
}

.price_txt s {
  color: #8c8c8c;
  font-size: 3.4vw;
  margin-left: 2vw;
}
@media screen and (min-width: 769px) {
  .price_txt s {
    font-size: 14px;
    margin-left: 1.5rem;
  }
}

.comment_wrap {
  background-color: #fff;
  border: solid 1vw #5eacfc;
  border-radius: 5vw;
  position: relative;
  top: 25vw;
}
@media screen and (min-width: 769px) {
  .comment_wrap {
    border: solid 0.5rem #5eacfc;
    border-radius: 2rem;
    top: 9rem;
    width: 850px;
  }
}

.comment_title_txt {
  display: inline-block;
  font-family: vdl-megamaru, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5vw;
  color: #fff;
  background-color: #5eacfc;
  border-radius: 3vw;
  padding: 1.5vw 3vw;
  position: absolute;
  top: -6vw;
  left: 2vw;
}
@media screen and (min-width: 769px) {
  .comment_title_txt {
    font-size: 23px;
    border-radius: 30rem;
    padding:  0.8rem 2rem;;
    top: -3rem;
    left: 2rem;
  }
}

.comment_title_img {
  width: 26vw;
  position: absolute;
  top: -16vw;
  right: 4vw;
}
@media screen and (min-width: 769px) {
  .comment_title_img {
    width: 132px;
    top: -7rem;
    right: 4rem;
  }
}

.comment_txt {
  font-family: maru-maru-gothic-bsr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.8vw;
  line-height: 7vw;
  text-align: justify;
  padding: 13vw 3vw 3vw 3vw;
}
@media screen and (min-width: 769px) {
  .comment_txt {
    font-size: 16px;
    line-height: 3.5rem;
    padding: 4rem 3rem 3rem 3rem;
  }
}

.comment_txt strong {
  color: #5eacfc;
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  .comment_txt strong {
    font-size: 20px;
  }
}


/* 前作
-------------------------------------------------- */
.pre_work {
  background-image: url(../img/bg02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top -27vw left -46vw;
  margin-top: 55vw;
}
@media screen and (min-width: 769px) {
  .pre_work {
    background-position: top center;
    margin-top: 42rem;
    padding: 5rem 0;
  }
}

.pre_work_wrap {
  padding: 5vw;
}

.catch_txt.type_b {
  color: #fc5eb7;
}

.awrad_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 3vw;
}
@media screen and (min-width: 769px) {
  .awrad_area {
    width: 820px;
    margin: 0 auto;
    margin-top: 3rem;
    flex-wrap: nowrap;
  }
}

.awrad_img {
  width: 40vw;
  margin-top: 5vw;
}
@media screen and (min-width: 769px) {
  .awrad_img {
    width: 24rem;
    margin-top: 5rem;
  }
}

.awrad_txt {
  font-family: maru-maru-gothic-bsr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4vw;
  color: #908012;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .awrad_txt {
    font-size: 13px;
    margin-top: 1.5rem;
  }
}


/* youtube
-------------------------------------------------- */
.youtube_wrap {
  margin-top: 32vw;
  padding: 5vw;
}
@media screen and (min-width: 769px) {
  .youtube_wrap {
    margin-top: 40rem;
    padding: 0rem;
  }
}

.catch_txt.type_b {
  background-color: #ff9c9c;
  padding: 0.5vw 4vw;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .catch_txt.type_b {
    padding: 0.3rem 4rem;
  }
}

.youtube_title {
  font-family: vdl-megamaru, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4vw;
  color: #ff9c9c;
  text-align: center;
  margin-top: 10vw;
}
@media screen and (min-width: 769px) {
  .youtube_title {
    font-size: 16px;
    margin-top: 6rem;
  }
}

@media screen and (min-width: 769px) {
  .youtube_area {
    display: flex;
    justify-content: space-around;
    width: 900px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 769px) {
  .youtube_box {
    width: 273px;
  }
}

.movie {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 90vw;
  margin: 0 auto;
  margin-top: 5vw;
  margin-bottom: 3vw;
}
@media screen and (min-width: 769px) {
  .movie {
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}

.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie_txt {
  font-family: maru-maru-gothic-bsr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4vw;
  color: #000;
}
@media screen and (min-width: 769px) {
  .movie_txt {
    font-size: 15px;
  }
}


/* クレジット
-------------------------------------------------- */
.dlsite_logo {
  width: 20vw;
  margin: 0 auto;
  margin-top: 25vw;
  margin-bottom: 5vw;
}
@media screen and (min-width: 769px) {
  .dlsite_logo {
    width: 140px;
    margin-top: 25rem;
    margin-bottom: 5rem;
  }
}

.credit_text {
  font-family: maru-maru-gothic-bsr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #425a70;
  font-size: 3vw;
  text-align: center;
  margin: 3vw 0;
}

@media screen and (min-width: 769px) {
  .credit_text {
    font-size: 14px;
    margin-top: 2%;
  }
}