@charset "UTF-8";
/* fadein
-------------------------------------------------- */
.fadein_01 {
  -webkit-animation: fadein_01 3s ease 0s 1 both;
  animation: fadein_01 3s ease 0s 1 both;
}

@-webkit-keyframes fadein_01 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein_01 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadein_02 {
  -webkit-animation: fadein_02 3s ease 2s 1 both;
  animation: fadein_02 3s ease 2s 1 both;
}

@-webkit-keyframes fadein_02 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadein_02 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadein_03 {
  -webkit-animation: fadein_03 3s ease 4s 1 both;
  animation: fadein_03 3s ease 4s 1 both;
}

@-webkit-keyframes fadein_03 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein_03 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* fadeInUp
-------------------------------------------------- */
.fadein_up {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.fadein_up.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

body {
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Helvetica Neue", Verdana, sans-serif;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

a:visited {
  color: #333;
}

p, a, h2, h3 {
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}

img {
  max-width: 100%;
}

.fv {
  background: url(../img/fv_bg.png) no-repeat center top/cover;
  padding-top: 30px;
}

@media screen and (max-width: 768px) {
  .fv {
    background: url(../img/fv_bg_sp.png) no-repeat center top/cover;
    padding-top: 0;
  }
}

.fv_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header_logo {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .header_logo {
    left: 10px;
    top: 10px;
  }
}

.header_logo img {
  width: 150px;
}

@media screen and (max-width: 768px) {
  .header_logo img {
    width: 100px;
  }
}

.content_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about {
  padding: 50px 0 80px;
}

@media screen and (max-width: 768px) {
  .about {
    padding: 25px 0 40px;
  }
}

.about_text {
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.about_text span {
  font-size: 30px;
  font-weight: 800;
}

.about_text span::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 100;
  margin: 0 7px;
}

@media screen and (max-width: 768px) {
  .about_text span {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .about_text {
    font-size: 15px;
  }
}

.about_text .about_voice {
  color: #E75B82;
}

.about_text .about_voice::before {
  content: "\f6a8";
}

.about_text .about_comic {
  color: #4E95EC;
}

.about_text .about_comic::before {
  content: "\f518";
}

.work_wrap {
  padding-top: 80px;
}

.work_wrap.bg_beige {
  background: #fBf9f6;
}

@media screen and (max-width: 768px) {
  .work_wrap {
    padding-top: 60px;
  }
}

.work_wrap h2 {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .work_wrap h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

.work_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.work_box {
  width: calc((100% / 3) - 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}

.work_box:not(:nth-child(3n)) {
  margin-right: 50px;
}

@media screen and (max-width: 768px) {
  .work_box:not(:nth-child(3n)) {
    margin-right: 0;
  }
}

.work_box .work_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.work_box .work_img img {
  max-height: 417px;
  -webkit-box-shadow: 0px 0px 15px -5px #777777;
          box-shadow: 0px 0px 15px -5px #777777;
}

.work_box .work_img .copyright {
  font-size: 12px;
  margin-top: 15px;
}

.work_box .work_info_wrap {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .work_box .work_info_wrap {
    margin-top: 10px;
  }
}

.work_box .work_info_wrap a {
  color: #333;
}

.work_box .work_info_wrap h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.work_box .work_info_wrap .work_actor {
  font-size: 14px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .work_box .work_info_wrap .work_actor {
    margin-top: 10px;
  }
}

.work_box .work_info_wrap .work_text {
  font-size: 14px;
  margin: 20px 0 30px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (max-width: 768px) {
  .work_box .work_info_wrap .work_text {
    margin: 15px 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .work_box {
    width: 100%;
  }
}

.btn_to_other_work_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn {
  text-align: center;
  width: 100%;
  display: block;
  -webkit-box-shadow: 0px 0px 15px -5px #777777;
          box-shadow: 0px 0px 15px -5px #777777;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  color: #333;
  padding: 16px 0;
  position: relative;
  background: #fff;
  border: none;
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Helvetica Neue", Verdana, sans-serif;
}

.btn_to_other_work_wrap .btn {
  background: #333;
  color: #fff;
  max-width: 520px;
  padding: 21px 0;
}

.btn:hover {
  opacity: 0.7;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .btn {
    font-size: 15px;
  }
}

.circle {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 15px;
  bottom: calc(50% - 15px);
}

.circle::before {
  font-family: "Font Awesome 5 Pro";
  font-size: 11px;
  display: block;
  content: "\f061";
  color: #fff;
}

.work_play .circle {
  border: 1px solid #a2b6ce;
}

.work_play .circle::before {
  content: "\f04b";
  color: #4d6d94;
}

.lp_return_top {
  display: block;
  overflow: hidden;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  width: 50px;
  height: 0;
  padding-top: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lp_return_top.hide {
  opacity: 0;
  visibility: hidden;
  bottom: 10px;
}

.lp_return_top::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -5px 0 0 -7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-box-shadow: -2px 2px 0 #fff inset;
          box-shadow: -2px 2px 0 #fff inset;
  content: "";
}

.lp_return_top:hover {
  background: rgba(0, 0, 0, 0.7);
}

.twitter_icon {
  background: #333;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .twitter_icon {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
}

.twitter_icon::before {
  content: "\f099";
  font-family: "Font Awesome 5 Brands";
  font-size: 17px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .twitter_icon::before {
    font-size: 12px;
  }
}

.bottom_section {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .bottom_section {
    padding: 40px 0;
  }
}

.lp_footer {
  width: 100%;
  height: 40px;
  font-size: 12px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  z-index: 100;
  background: #000;
}

.modal {
  display: none;
  position: fixed;
  z-index: 8887;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.modal-content {
  width: 100%;
  max-width: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: show 0.6s linear 0s;
          animation: show 0.6s linear 0s;
}

.modal-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.modal-close {
  color: #fff;
  text-decoration: none;
  font-size: 3rem;
  line-height: 1;
  padding: 0 8px;
}

.modal-close:hover,
.modal-close:focus {
  text-decoration: none;
  cursor: pointer;
  opacity: 0.7;
}

@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.movie_box {
  padding-top: 100%;
  height: 0;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.movie_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=lp.css.map */